/usr/share/freemat/help/text/rawwrite.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 | RAWWRITE RAWWRITE Write N-dimensional Array From File
Usage
The syntax for rawwrite is
function rawwrite(fname,x,byteorder)
where fname is the name of the file to write to, and the
(numeric) array x is writen to the file in its native
type (e.g. if x is of type int16, then it will be written
to the file as 16-bit signed integers. If byteorder is
left unspecified, the file is assumed to be
of the same byte-order as the machine FreeMat is running on.
If you wish to force a particular byte order, specify the byteorder
argument as
- 'le','ieee-le','little-endian','littleEndian','little'
- 'be','ieee-be','big-endian','bigEndian','big'
|