/usr/share/freemat/help/text/deblank.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 | DEBLANK DEBLANK Remove trailing blanks from a string
Usage
The deblank function removes spaces at the end of a string
when used with the syntax
y = deblank(x)
where x is a string, in which case, all of the extra spaces
in x are stripped from the end of the string. Alternately,
you can call deblank with a cell array of strings
y = deblank(c)
in which case each string in the cell array is deblanked.
|