This file is indexed.

/usr/share/freemat/help/text/getfield.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
GETFIELD GETFIELD Get Field Contents

Usage

Given a structure or structure array, returns the contents of the
specified field.  The first version is for scalar structures, and
has the following syntax

   y = getfield(x,'fieldname')

and is equivalent to y = x.fieldname where x is a scalar (1 x 1)
structure.  If x is not a scalar structure, then y is the 
first value, i.e., it is equivalent to y = x(1).fieldname.  
The second form allows you to specify a subindex into a
structure array, and has the following syntax

    y = getfield(x, {m,n}, 'fieldname')

and is equivalent to y = x(m,n).fieldname.  You can chain multiple
references together using this syntax.