Member of the support class.
csvwrite(file, m)
csvwrite(file, m, row, col)
Writes values from a matrix to a file of values that are separated by commas.
| Name | Description |
| file | Specifies the file you want to write to. file is a string. |
| m | Specifies the matrix of values you want to write. |
| row, col | Specify the location in the file at which you want to start writing. row and col are zero-based. |
In the following example, LabVIEW creates test.csv in the LabVIEW Data directory. LabVIEW then reads the values in test.csv and returns these values as a matrix.
csvwrite('test', magic(5), 2, 2);