/usr/share/freemat/help/text/cumprod.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 | CUMPROD CUMPROD Cumulative Product Function
Usage
Computes the cumulative product of an n-dimensional array along a given
dimension. The general syntax for its use is
y = cumprod(x,d)
where x is a multidimensional array of numerical type, and d
is the dimension along which to perform the cumulative product. The
output y is the same size of x. Integer types are promoted
to int32. If the dimension d is not specified, then the
cumulative sum is applied along the first non-singular dimension.
|