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