<< csvread | Spreadsheet | detectImportOptions >> |
csvwrite(filename, M) |
csvwrite(filename, M, r, c) |
a string: filename destination.
an numeric or logical matrix.
integer: offset. default : 0, 0
csvwrite writes an numeric matrix to an CSV format file.
A = [Inf, -Inf, NaN, 3];
filename = [tempdir(), 'dlmwrite_example.csv'];
csvwrite(filename, A);
R = csvread(filename)
A = eye(3, 2);
csvwrite(filename, A);
R = fileread(filename)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET