Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Output functions > msprintf

msprintf

converts, formats, and writes data in a string

sprintf

converts, formats, and writes data in a string (obsolete)

Syntax

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

msprintf('%5.3f %5.3f',123,0.732)
msprintf('%5.3f\n%5.3f',123,0.732)
msprintf('--%s-\n-%d--',"hello",3)
msprintf('%e ', [1;2;3])
msprintf('%d %d\n', [1, 2; 3, 4])

See Also

  • mprintf — converts, formats, and writes data to the main scilab window
  • printf_conversion — mprintf, msprintf, mfprintf conversion specifications
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:39 CEST 2016