infoframe2.m.html | ![]() |
Source file: infoframe2.m | |
Directory: /home/rjl/git/rjleveque/clawpack-4.x/matlab | |
Converted: Sun May 15 2011 at 19:15:57 using clawcode2html | |
This documentation file will not reflect any later changes in the source file. |
% infoframe2.m % print out info about current data disp([' Frame = ' num2str(Frame)]) disp([' time = ' num2str(t)]) for ngr=1:ngrids disp(sprintf(' Grid %2d level = %5d mx = %5d xlower = %5g dx = %5g', ... ngr,amrdata(ngr).level,amrdata(ngr).mx, amrdata(ngr).xlow,... amrdata(ngr).dx)); disp(sprintf(' my = %5d ylower = %5g dy = %5g', ... amrdata(ngr).my, amrdata(ngr).ylow,amrdata(ngr).dy)); end if ngrids>1 disp([' number of grid cells on each level: ',num2str(ncells)]); end disp([' total number of grid cells: ',num2str(sum(ncells))]); disp([' q values range between: ',num2str(qmin),' and ',num2str(qmax)]); disp(' ')