Member of the support class.
dlmwrite(file, m, d)
dlmwrite(file, m, d, row, col)
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. |
dlmwrite('test', magic(5), '/', 2, 2);
a = dlmread('test', '/', 'A2..C3')