Switch case inside of another switch case
Show older comments
How can i put a switch case inside of another switch case?
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
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!