This file is indexed.

/usr/share/freemat/help/text/dlmread.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
40
41
42
43
44
45
46
DLMREAD DLMREAD Read ASCII-delimited File

Usage

Loads a matrix from an ASCII-formatted text file with a delimiter
between the entries.  This function is similar to the load -ascii
command, except that it can handle complex data, and it allows you
to specify the delimiter.  Also, you can read only a subset of the
data from the file.  The general syntax for the dlmread function
is

    y = dlmread(filename)

where filename is a string containing the name of the file to read.
In this form, FreeMat will guess at the type of the delimiter in the 
file.  The guess is made by examining the input for common delimiter
characters, which are ,;: or a whitespace (e.g., tab).  The text
in the file is preprocessed to replace these characters with whitespace
and the file is then read in using a whitespace for the delimiter.

If you know the delimiter in the file, you can specify it using
this form of the function:

    y = dlmread(filename, delimiter)

where delimiter is a string containing the delimiter.  If delimiter
is the empty string, then the delimiter is guessed from the file.

You can also read only a portion of the file by specifying a start row
and start column:

    y = dlmread(filename, delimiter, startrow, startcol)

where startrow and startcol are zero-based.  You can also specify
the data to read using a range argument:

    y = dlmread(filename, delimiter, range)

where range is either a vector [startrow,startcol,stoprow,stopcol]
or is specified in spreadsheet notation as B4..ZA5.

Note that complex numbers can be present in the file if they are encoded
without whitespaces inside the number, and use either i or j as 
the indicator.  Note also that when the delimiter is given, each incidence
of the delimiter counts as a separator.  Multiple separators generate
zeros in the matrix.