| readm.m.html |   | 
| Source file: readm.m | |
| Directory: /home/rjl/git/claworg/clawpack-4.x/matlab | |
| Converted: Sat Aug 6 2011 at 21:53:05 using clawcode2html | |
| This documentation file will not reflect any later changes in the source file. | 
function data = readm(fname,m) % % read a matrix of data with m values on each line % fid = fopen(fname); data = fscanf(fid,'%g',[m,inf]); data = data'; status = fclose(fid);