This file is indexed.

/usr/share/freemat/help/text/squeeze.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
SQUEEZE SQUEEZE Remove Singleton Dimensions of an Array

Usage

This function removes the singleton dimensions of an array.  The
syntax for its use is

   y = squeeze(x)

where x is a multidimensional array.  Generally speaking, if
x is of size d1 x 1 x d2 x ..., then squeeze(x) is of
size d1 x d2 x ..., i.e., each dimension of x that was
singular (size 1) is squeezed out.