This file is indexed.

/usr/share/freemat/help/text/lower.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
LOWER LOWER Convert strings to lower case

Usage

The lower function converts a string to lower case with
the syntax

   y = lower(x)

where x is a string, in which case all of the upper case
characters in x (defined as the range 'A'-'Z') are
converted to lower case.  Alternately, you can call lower
with a cell array of strings

   y = lower(c)

in which case each string in the cell array is converted to lower case.