readm.m.html CLAWPACK  
 Source file:   readm.m
 Directory:   /home/rjl/git/rjleveque/clawpack-4.x/matlab
 Converted:   Sun May 15 2011 at 19:15:58   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);