/usr/share/freemat/help/text/persistent.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 | PERSISTENT PERSISTENT Persistent Variables
Usage
Persistent variables are variables whose value persists between
calls to a function or script. The general syntax for its
use is
persistent variable1 variable2 ... variableN
The persistent statement must occur before the variable
is the tagged as persistent. Per the MATLAB API documentation
an empty variable is created when the persistent statement
is called.
|