How to use the simulation time in an embedded function in matlab
Mostra commenti meno recenti
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 Commento
dpb
il 1 Ott 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.
Risposta accettata
Più risposte (1)
Manyu Hati
il 2 Ott 2022
Modificato: Manyu Hati
il 2 Ott 2022
0 voti
Categorie
Scopri di più su Check Model Compliance in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!