Scilab 5.3.3
Scilab help >> Scilab > Scilab keywords > select
Add a comment:
Please login to comment this page.
select
select keyword
Description
select expr, case expr1 then instructions1, case expr2 then instructions2, ... case exprn then instructionsn, [else instructions], end
Notes:
The only constraint is that each "then" keyword must be on the same line line as corresponding "case" keyword.
The keyword "then" can be replaced by a carriage return or a comma.
instructions1are executed ifexpr1=expr, etc.
Warning: the number of characters used to define the body of any conditionnal instruction (if while for or select/case) must be limited to 16k.
Examples
Comments
Add a comment:
Please login to comment this page.
| << return | Scilab keywords | semicolon (;) >> |