Owning Class: support
Requires: MathScript RT Module
fwrite_delimited(file, m, d)
fwrite_delimited(file, m, d, row, col)
Legacy Name: dlmwrite
Writes an ASCII delimited file.
| Name | Description |
|---|---|
| file | Specifies the file you want to write to. file is a string. |
| m | Specifies the matrix you want to write. |
| d | Specifies the delimiter that separates the values in the file. For example, a value of \t specifies a single tab character as the delimiter. d is a string. |
| row, col | Specify the location in the matrix 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.
fwrite_delimited('test', magic(5), '/', 2, 2);
a = fread_delimited('test', '/', 'A2..C3')