|
infoframe1.m.html |
|
|
Source file: infoframe1.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.
|
% infoframe1.m
% print out info about current data
disp([' Frame = ' num2str(Frame)])
disp([' time = ' num2str(t)])
disp([' ngrids = ' num2str(ngrids)])
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).xlower, ...
amrdata(ngr).dx);
end