Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
if (condition)
|
||||
% body
|
||||
endif
|
||||
|
||||
if (condition)
|
||||
% body
|
||||
else
|
||||
% otherwise body
|
||||
endif
|
||||
|
||||
if (condition1)
|
||||
% body
|
||||
elseif (condition2)
|
||||
% body 2
|
||||
else
|
||||
% otherwise body
|
||||
endif
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
switch( expression )
|
||||
case label1
|
||||
% code for label1
|
||||
case label2
|
||||
% code for label2
|
||||
otherwise
|
||||
% none of the previous
|
||||
endswitch
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
switch ( x )
|
||||
case 1
|
||||
disp("it is 1");
|
||||
case { 5,6,7 }
|
||||
disp("it is 5, or 6 or 7");
|
||||
otherwise
|
||||
disp("unknown!");
|
||||
endswitch
|
||||
Loading…
Add table
Add a link
Reference in a new issue