This file is indexed.

/usr/share/freemat/help/text/text.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
TEXT TEXT Add Text Label to Plot

Usage

Adds a text label to the currently active plot.  The general
syntax for it is use is either

   text(x,y,'label')

where x and y are both vectors of the same length, in which
case the text 'label' is added to the current plot at each of the
coordinates x(i),y(i) (using the current axis to map these to screen
coordinates).  The second form supplies a cell-array of strings
as the second argument, and allows you to place many labels simultaneously

   text(x,y,{'label1','label2',....})

where the number of elements in the cell array must match the size of
vectors x and y.  You can also specify properties for the labels
via

   handles = text(x,y,{labels},properties...)