Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> Funções de Saída > msprintf

msprintf

converts, formats, and writes data in a string

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") 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)

See Also

  • mprintf — converts, formats, and writes data to the main scilab window
  • printf_conversion — Especificações de conversão de printf, sprintf, fprintf
<< mprintf Funções de Saída prettyprint >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:11:53 CEST 2011