ReadDataInExp.mw

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);
 

 

0
[[0., .21], [.1, .1950307288], [.2, .1820133908], [.3, .1708177041], [.4, .1613316181], [.5, .1534601934], [.6, .1471246498], [.7, .1422615792], [.8, .1388223103], [.9, .1367724217], [1., .1360913975]...
[[0., .21], [.1, .1950307288], [.2, .1820133908], [.3, .1708177041], [.4, .1613316181], [.5, .1534601934], [.6, .1471246498], [.7, .1422615792], [.8, .1388223103], [.9, .1367724217], [1., .1360913975]...
[[0., .21], [.1, .1950307288], [.2, .1820133908], [.3, .1708177041], [.4, .1613316181], [.5, .1534601934], [.6, .1471246498], [.7, .1422615792], [.8, .1388223103], [.9, .1367724217], [1., .1360913975]...
(1)
 

Print the data.  

> data:=evalm(data);
 

Typesetting:-mrow(Typesetting:-mi( (2)
 

>