/usr/share/freemat/help/text/builtin.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 | BUILTIN BUILTIN Evaulate Builtin Function
Usage
The builtin function evaluates a built in function
with the given name, bypassing any overloaded functions.
The syntax of builtin is
[y1,y2,...,yn] = builtin(fname,x1,x2,...,xm)
where fname is the name of the function to call. Apart
from the fact that fname must be a string, and that builtin
always calls the non-overloaded method, it operates exactly like
feval. Note that unlike MATLAB, builtin does not force
evaluation to an actual compiled function. It simply subverts
the activation of overloaded method calls.
|