How to use the simulation time in an embedded function in matlab
Show older comments
Dear matlabers,
I am wondering how to correct this simple code in a matlab embedded function included in a simulink file.
function y= hybrid(t, dpo, dic)
if t < 0.04762
y=dpo;
else
y=dic;
end
In this simple code, "t" would be the simulation time and it is obtained by means of a clock block. However, when I try to compile it, matlab console reports the following error:
"This assignment writes a 'double' value into a 'logical' type. Code generation does not support changing types through assignment. Check preceding assignments or input type specifications for type mismatches. Function 'Hybrid Algorithm/MPPT P&O Function' (#146.60.61), line 6, column 1: "y""
How can I make this simple function work?I have searched for similar questions and applied several advices but with no success.
Thanks a lot.
Manyu
1 Comment
dpb
on 1 Oct 2022
What are dpo, dic data types and what is the target to which you're trying to assign the result?
I don't know anything at all about Simulink, but my reading says the error says your function needs to return a logical value, not a numeric one.
But, if the two arguments other than t are numeric, then "you can't do that!" because the y value will have to be numeric to hold those values.
What your function could do with these inputs wouldn't have any bearing on what the values of the other two arguments are; but simply return the logic flag
function y= hybrid(t)
y=(t<0.04762)
end
and then you'd need some way to use that result to switch the two inputs to wherever they're supposed to be going.
But, folks would have to see the pertinent parts of the model to have any idea about the total solution.
Accepted Answer
More Answers (1)
Manyu Hati
on 2 Oct 2022
Edited: Manyu Hati
on 2 Oct 2022
0 votes
Categories
Find more on Modeling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!