/usr/share/freemat/help/text/feval.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 17 18 19 | FEVAL FEVAL Evaluate a Function
Usage
The feval function executes a function using its name.
The syntax of feval is
[y1,y2,...,yn] = feval(f,x1,x2,...,xm)
where f is the name of the function to evaluate, and
xi are the arguments to the function, and yi are the
return values.
Alternately, f can be a function handle to a function
(see the section on function handles for more information).
Finally, FreeMat also supports f being a user defined class
in which case it will atttempt to invoke the subsref method
of the class.
|