Owning Class: support
Requires: MathScript RT Module
fwrite_csv(file, m)
fwrite_csv(file, m, row, col)
Legacy Name: csvwrite
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. |
If you use this function in a stand-alone application or shared library and file is a relative path, LabVIEW searches for the file in the path where you installed the application or shared library. If file is an absolute path, LabVIEW searches for the file on the local machine or target at the specified location. (Real-Time Module) If you deploy this function to an RT target and file is a relative path, LabVIEW searches for the file in the path returned by the Default Data Directory VI.
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.
fwrite_csv('test', magic(5), 2, 2);