This file is indexed.

/usr/share/freemat/help/text/rank.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
RANK RANK Calculate the Rank of a Matrix

Usage

Returns the rank of a matrix.  There are two ways to use
the rank function is

   y = rank(A,tol)

where tol is the tolerance to use when computing the
rank.  The second form is

   y = rank(A)

in which case the tolerance tol is chosen as

   tol = max(size(A))*max(s)*eps,

where s is the vector of singular values of A.  The
rank is computed using the singular value decomposition svd.