Member of the support class.
a = fgetl(fid)
Reads a line from a file. To read a line from a byte stream file, you must use this function.
| Name | Description |
| fid | Specifies the identifier for the file you want to read. Use the fopen function to open a file and assign it an identifier. fid is an integer. |
| Name | Description |
| a | Returns the string LabVIEW reads from the file you specify in fid. |
Make sure the file Test.m exists in the MathScript search path.
fid = fopen('Test.m');