Scilab 5.5.0
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
データを変換,整形し,文字列に書き込む
呼び出し手順
str=msprintf(format,a1,...,an);
パラメータ
- format
残りのオペランドを書き込む際に使用される フォーマット定義するSclab文字列.
- str
文字列.
- a1,...,an
S formatパラメータに基づき変換,出力されるデータを定義します.
説明
msprintf
は,整形されたオペランドを
その戻り値(Scilab文字列)に書き込みます.
argumentオペランドはformatオペランドの制御の下で
整形されます.
この場合,エスケープシーケンス("\n"
) は
文字列を文字列の行列に分割することに注意してください (例を参照)
例
msprintf('%5.3f %5.3f',123,0.732) msprintf('%5.3f\n%5.3f',123,0.732) msprintf('--%s-\n-%d--',"hello",3)
参照
- mprintf — 変換, 整形し, Scilab主ウインドウにデータを書き込む
- printf_conversion — mprintf, msprintf, mfprintf 変換仕様
Report an issue | ||
<< mprintf | Output functions | prettyprint >> |