/usr/share/freemat/help/text/fscanf.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 | FSCANF FSCANF Formatted File Input Function (C-Style)
Usage
Reads values from a file. The general syntax for its use is
[a,count] = fscanf(handle,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 fscanf 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. Note that if
the file is at the end-of-file, the fscanf will return
|