Scilab 5.3.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
read_csv
Read comma-separated value file
Calling Sequence
M = read_csv(fname [,sep])
Arguments
- fname
a character string. The file path.
- sep
a character string. Field separator used, default value is ",".
ascii(9) or "\t" for a tabulation separator are accepted.
- M
a matrix of strings.
Description
Given an ascii file with delimited fields, for instance created by a spreadsheet using "Text and comma" format, read_csv(fname) returns the corresponding Scilab matrix of strings. Use read_csv(fname,sep) for another choice of separator.
Note: You may eval all or part of M using function evstr in order to convert string variables into numeric variables.
Examples
Authors
- Allan CORNET
<< Spreadsheet | Spreadsheet | readxls >> |