Member of the support class.
m = dlmread(file, d)
m = dlmread(file, d, range)
m = dlmread(file, d, row, col)
Reads an ASCII delimited file.
| Name | Description |
| file | Specifies the file you want to read. file is a string |
| 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. |
| range | Specifies the range of the data you want to read. range is a vector of four elements [a b c d], where [a b] is the upper-left corner of the data you want to read and [c d] is the lower-right corner of the data you want to read. You also can use Microsoft Excel spreadsheet notation to specify range, as in range = 'A1..B3'. |
| row, col | Specify the location at which you want to start reading the data. row and col are zero-based. |
| Name | Description |
| m | Returns the matrix. |
In the following example, LabVIEW creates test.dlm in the LabVIEW Data directory. LabVIEW then reads the values in test.dlm and returns these values as a matrix.
dlmwrite('test', magic(5), '/', 2, 2);