Switch case inside of another switch case
26 views (last 30 days)
Show older comments
How can i put a switch case inside of another switch case?
0 Comments
Answers (1)
Sean de Wolski
on 30 Dec 2014
x = 2;
y = 3;
switch x
case 1
disp 1
case 2
switch y
case 2
disp Ha!
case 3
disp HaHa!
otherwise
disp Nah
end
end
1 Comment
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!