This file is indexed.

/usr/share/freemat/help/text/colon.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
33
34
35
36
COLON COLON Overloaded Colon Operator

Usage

This is a method that is invoked in one of two forms, either
the two argument version

  c = colon(a,b)

which is also called using the notation

  c = a:b

and the three argument version

  d = colon(a,b,c)

which is also called using the notation

  d = a:b:c

COLON COLON Index Generation Operator

Usage

There are two distinct syntaxes for the colon : operator - the two argument form

  y = a : c

and the three argument form

  y = a : b : c

The two argument form is exactly equivalent to a:1:c.  The output y is the vector
where a+nb <= c.  There is a third form of the colon operator, the 
no-argument form used in indexing (see indexing for more details).