This file is indexed.

/usr/share/freemat/help/text/gcf.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
GCF GCF Get Current Figure

Usage

Returns the figure number for the current figure (which is also its handle,
and can be used to set properties of the current figure using set).  
The syntax for its use
is

  figure_number = gcf

where figure_number is the number of the active figure (also the handle of
the figure).

Note that figures have handles, just like axes, images, plots, etc.  However
the handles for figures match the figure number (while handles for other 
graphics objects tend to be large, somewhat arbitrary integers).  So, to 
retrieve the colormap of the current figure, you could 
use get(gcf,'colormap'), or to obtain the colormap for figure 3, 
use get(3,'colormap').