/usr/share/freemat/help/text/while.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | WHILE WHILE While Loop
Usage
The while loop executes a set of statements as long as
a the test condition remains true. The syntax of a
while loop is
while test_expression
statements
end
Note that a conditional expression is considered true if
the real part of the result of the expression contains
any non-zero elements (this strange convention is adopted
for compatibility with MATLAB).
|