HyperFun: Statements
There are four types of the statements each ending with ';':
<localVarName> '=' <functional expression> ';'
i = 1;
This statement allows to assign values to all elements of array. Its general form is:
<ElemArrayName> '=' '[' <constant>, ..., <constant> ']' ';'
pz = [100., -20, 2, 0., 0., -3, 0., 0., 1E-10];
It is a traditional 'if-then-else' statement having two forms:
The iterative statement allows to define repeating loops. Its general form is:
'while' '(' <boolean expression> ')' 'loop' <statements> 'endloop' ';'
i=1;