Scilab 5.3.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
write_csv
カンマ区切り形式でファイルに書き込む
呼び出し手順
write_csv(M, filename [,sep, dec])
パラメータ
- filename
文字列. ファイルパス.
- M
文字列の行列.
- sep
列セパレータ記号, デフォルトはタブ文字: ascii(9)
- dec
小数点記号 '.' または ','. デフォルトは ','
説明
write_csv(M, filename) は,行列Mを filenameにカンマ区切り形式で書き込みます. filename入力は文字列です .
ファイル 'filename' がすでに存在する場合, 上書きされます.
例
作者
- Allan CORNET
<< readxls | Spreadsheet | xls_open >> |