zvelocity.m.html | ![]() |
Source file: zvelocity.m | |
Directory: /Users/rjl/git/rjleveque/clawpack-4.6.2/matlab | |
Converted: Wed May 30 2012 at 13:02:52 using clawcode2html | |
This documentation file will not reflect any later changes in the source file. |
function w = zvelocity(data) % % Compute the z-velocity from the data % for problems where the fourth component is the z-momentum and the % first component is the "density" (e.g. Euler) w = data(:,4)./data(:,1);