Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
msprintf
converts, formats, and writes data in a string
sprintf
Calling Sequence
str=msprintf(format,a1,...,an);
Arguments
- format
a Scilab string describing the format to use to write the remaining operands.
- str
a character string.
- a1,...,an
Specifies the data to be converted and printed according to the format parameter.
Description
The msprintf
writes formatted operands in its
returned value (a Scilab string). The argument operands are formatted
under control of the format operand.
Note that, in this case, the escape sequences ( "\n" ) (in format)
split string to a matrix of string (see example). |
Examples
See Also
- mprintf — converts, formats, and writes data to the main scilab window
- printf_conversion — mprintf, msprintf, mfprintf conversion specifications
Report an issue | ||
<< mprintf | Output functions | prettyprint >> |