Scilab-Branch-5.3-GIT
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
write_csv
Write comma-separated value file
Calling Sequence
write_csv(M, filename [,sep, dec])
Arguments
- filename
- a character string. The file path. 
- M
- a matrix of strings. 
- sep
- column separator mark, by default a tabulation: ascii(9) or "\t". 
- dec
- decimal mark '.' or ',' by default a ',' 
Description
write_csv(M, filename) writes matrix M into filename as comma-separated values. The filename input is a string.
if the file 'filename' already exists, it is overwritten.
Examples
// save a matrix as csv file format A = [1:10] * 0.1; write_csv(A, TMPDIR + '/datas.csv'); // read as text mgetl(TMPDIR + '/datas.csv') r = read_csv(TMPDIR + '/datas.csv',ascii(9)); r = strsubst(r,',','.'); evstr(r) A = [1:10] * 0.1; write_csv(A', TMPDIR+'/foo.csv', ' ', '.'); mgetl(TMPDIR+'/foo.csv')
See Also
Authors
- Allan CORNET
| << readxls | Spreadsheet | xls_open >> |