This file is indexed.

/usr/share/freemat/help/text/fwrite.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
33
34
35
36
37
38
39
FWRITE FWRITE File Write Function

Usage

Writes an array to a given file handle as a block of binary (raw) data.
The general use of the function is

  n = fwrite(handle,A)

The handle argument must be a valid value returned by the fopen 
function, and accessable for writing. The array A is written to
the file a column at a time.  The form of the output data depends
on (and is inferred from) the precision of the array A.  If the 
write fails (because we ran out of disk space, etc.) then an error
is returned.  The output n indicates the number of elements
successfully written.

Note that unlike MATLAB, FreeMat 4 does not default to uint8 for
writing arrays to files.  Alternately, the type of the data to be
written to the file can be specified with the syntax

  n = fwrite(handle,A,type)

where type is one of the following legal values:
  -  'uint8','uchar','unsigned char' for an unsigned, 8-bit integer.

  -  'int8','char','integer*1' for a signed, 8-bit integer.

  -  'uint16','unsigned short' for an unsigned, 16-bit  integer.

  -  'int16','short','integer*2' for a signed, 16-bit integer.

  -  'uint32','unsigned int' for an unsigned, 32-bit integer.

  -  'int32','int','integer*4' for a signed, 32-bit integer.

  -  'single','float32','float','real*4' for a 32-bit floating point.

  -  'double','float64','real*8' for a 64-bit floating point.