How to use Switch case and if else in Embedded Matlab Function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to put an ifelse condition under switch statements in Embedded Matlab Function. Can anyone suggest me the correct way of syntax used in Embedded Matlab Function.
Thanks in Advance.
0 Kommentare
Antworten (1)
Laura Proctor
am 24 Dez. 2012
2 Kommentare
Walter Roberson
am 26 Dez. 2012
Initialize the output before you enter the switch().
Currently, one of the choices you have in the switch does not always assign a value to the output. For example, if you had
if length(A) > 5
B = A + 1;
else
warn('A is too short');
end
then that code does not assign a value to B in the case of the warning.
Siehe auch
Kategorien
Mehr zu Install Products finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!