This file is indexed.

/usr/share/freemat/help/text/subplot.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
24
25
26
27
28
29
30
31
32
SUBPLOT SUBPLOT Subplot Function

Usage

This function divides the current figure into a 2-dimensional
grid, each of which can contain a plot of some kind.  The function
has a number of syntaxes.  The first version 

   subplot(row,col,num)

which either activates subplot number num, or 
sets up a subplot grid of size row x col, and then
activates num. You can also set up subplots that cover multiple
grid elements

   subplot(row,col,[vec])

where vec is a set of indexes covered by the new subplot.
Finally, as a shortcut, you can specify a string with three
components

   subplot('mnp')

or using the alternate notation

   subplot mnp

where m is the number of rows, n is the number of columns
and p is the index.  You can also specify the location of the
subplot explicitly using the syntax

   subplot('position',[left bottom width height])