This worksheet is entitled ReadDataInExp.mws.
| > | restart: |
Read in data from a text file named "maple_output.txt" located on the D drive under the folder named "ECHE700Sp09".
| > | fd := fopen("D:\\ECHE700Sp09\\maple_output.txt",READ);
data:=readdata(fd,2); fclose(fd); |
| (1) |
Print the data.
| > | data:=evalm(data); |
![]() |
(2) |
| > |