readm.m.html CLAWPACK  
 Source file:   readm.m
 Directory:   /Users/rjl/git/rjleveque/clawpack-4.6.3/matlab
 Converted:   Mon Jan 21 2013 at 20:16:03   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);