I want to plot a mesh via pdeplot3D, and in the same plot draw arrows that indicate force vectors. I already tried the following two approaches that don't give me the result I'm looking for.
With hold on/hold off:
hold on
pdeplot3D(smodel);
quiver3(msh.Nodes(1,:), msh.Nodes(2,:), msh.Nodes(3,:), forces_xyz(:,1).', forces_xyz(:,2).', forces_xyz(:,3).');
hold off
...gives me two plots.
With the pdeplot3D-builtin FlowData functionality:
pdeplot3D(smodel, 'FlowData', forces_xyz, 'Mesh', 'on');
... only plots the arrows, not the mesh.
Does anyone know a way how to superimpose arrows on a mesh plot from pdeplot3D?