/usr/share/freemat/help/text/strtrim.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 | STRTRIM STRTRIM Trim Spaces from a String
Usage
Removes the white-spaces at the beginning and end of a string (or a
cell array of strings). See isspace for a definition of a white-space.
There are two forms for the strtrim function. The first is for
single strings
y = strtrim(strng)
where strng is a string. The second form operates on a cell array
of strings
y = strtrim(cellstr)
and trims each string in the cell array.
|