This file is indexed.

/usr/share/freemat/help/text/sprandn.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
SPRANDN SPRANDN Sparse Normal Random Matrix

Usage

Creates a sparse matrix with normally distributed random entries (mean 0, sigma 1).  The
syntax for its use is

  y = sprandn(x)

where x is a sparse matrix, where y is a sparse matrix that has
random entries where x is nonzero.  The second form specifies the
size of the matrix and the density

  y = sprandn(m,n,density)

where m is the number of rows in the output, n is the number of 
columns in the output, and density (which is between 0 and 1) is
the density of nonzeros in the resulting matrix.  Note that for very
high densities the actual density of the output matrix may differ from
the density you specify.  This difference is a result of the way the
random entries into the matrix are generated.  If you need a very dense
random matrix, it is better to generate a full matrix and zero out the 
entries you do not need.