Navigation

Operators and Keywords

Function List:

C++ API

: x = csvread (filename)
: x = csvread (filename, dlm_opt1, …)

Read the comma-separated-value (CSV) file filename into the matrix x.

Note: only CSV files containing numeric data can be read.

This function is equivalent to

x = dlmread (filename, "," , dlm_opt1, …)

Any optional arguments are passed directly to dlmread (see ‘dlmread’).

See also: dlmread, textread, textscan, csvwrite, dlmwrite.

Package: octave