0001 function plot_quivervel3(md,options_structure,width,i);
0002
0003
0004
0005
0006
0007
0008
0009
0010 [x y z elements is2d]=processmesh(md,options_structure);
0011 [vx isongrid]=processdata(md,md.vx,options_structure);
0012 [vy isongrid]=processdata(md,md.vy,options_structure);
0013 [vz isongrid]=processdata(md,md.vz,options_structure);
0014
0015
0016 subplot(width,width,i);
0017
0018
0019 quiver3(x,y,z,vx,vy,vz);
0020
0021
0022 if isnan(options_structure.title)
0023 options_structure.title='Velocity vectors (3D)';
0024 end
0025 if isnan(options_structure.colorbar)
0026 options_structure.colorbar=1;
0027 end
0028 applyoptions(md,[],options_structure);