/usr/share/freemat/help/text/ceil.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 | CEIL CEIL Ceiling Function
Usage
Computes the ceiling of an n-dimensional array elementwise. The
ceiling of a number is defined as the smallest integer that is
larger than or equal to that number. The general syntax for its use
is
y = ceil(x)
where x is a multidimensional array of numerical type. The ceil
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 ceil function
is not defined for complex or dcomplex types.
|