/usr/share/freemat/help/text/inf.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 20 21 22 23 24 25 26 27 28 29 30 31 32 | INF INF Infinity Constant
Usage
Returns a value that represents positive infinity
for both 32 and 64-bit floating point values.
There are several forms for the Inf function.
The first form returns a double precision Inf.
y = inf
The next form takes a class name that can be either 'double'
y = inf('double')
or 'single':
y = inf('single')
With a single parameter it generates a square matrix of infs.
y = inf(n)
Alternatively, you can specify the dimensions of the array via
y = inf(m,n,p,...)
or
y = inf([m,n,p,...])
Finally, you can add a classname of either 'single' or 'double'.
|