/usr/share/freemat/help/text/round.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 | ROUND ROUND Round Function
Usage
Rounds an n-dimensional array to the nearest integer elementwise.
The general syntax for its use is
y = round(x)
where x is a multidimensional array of numerical type. The round
function preserves the type of the argument. So integer arguments
are not modified, and float arrays return float arrays as
outputs, and similarly for double arrays. The round function
is not defined for complex or dcomplex types.
|