Variable 'a' is undefined on some execution paths. Why?
Afficher commentaires plus anciens
I'm using the block named Embedded MATLAB (that link the simulink to matlab) and when I try to run the code above, return the message error: "Variable 'a' is undefined on some execution paths". Besides that, other message appears: "Parsing successful for machine: "teste1_05mar13"(#17)" What does it mean?
function y = fcn(ia,va,t)
%#eml
p = ia*va;
N=1000;
if t <= 1.0e-6
a = 0;
b = 0;
end
b = a-0.01; %"b" is the value of the same "a", but is a value that precedes in 0.01 the value "a"
a = b + (p -b)/N;
y=a;
Thanks
1 commentaire
Caroline Rosa
le 8 Mar 2013
Modifié(e) : Azzi Abdelmalek
le 8 Mar 2013
Réponse acceptée
Plus de réponses (1)
Ryad BOUKHARI
le 25 Avr 2017
0 votes
Hello,
I faced the same problem, and it works.
Thank you Abdelmalek.
Catégories
En savoir plus sur MATLAB Coder dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!