Why is my variable undefined?
Ältere Kommentare anzeigen
Could someone tell me why 'g' is undefined?
Akzeptierte Antwort
Weitere Antworten (1)
Rik
am 27 Apr. 2018
Not all options for your if-structure will result in defining g
if age<1
a=.4;
else
if (age>=1) && (age<3)
a=.6;
elseif (age>=3) && (age<5)
a=.7;
elseif (age>=5) && (age<10)
a=.5;
else
%only here g will be defined
1 Kommentar
Ben Nelson
am 27 Apr. 2018
Kategorien
Mehr zu Testing Frameworks finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!