This file is indexed.

/usr/share/freemat/help/text/sscanf.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
SSCANF SSCANF Formated String Input Function (C-Style)

Usage

Reads values from a string.  The general syntax for its use is

  [a, count, errmsg, nextind] = sscanf(text,format,[size])

Here format is the format string, which is a string that
controls the format of the input, size specifies the amount of data to be read. Values that are parsed
from the text are stored in a. Note that sscanf is vectorized - the format string is reused as long as
there are entries in the text string. See printf
for a description of the format.