From: Alan G I. <ai...@am...> - 2009-11-29 20:29:04
|
On 11/29/2009 12:10 PM, Eric Firing wrote: > quiver(x[:-1], y[:-1], u, v, angles='xy', units='x', scale=1) > That works perfectly when there is change only in x, but not when both coordinates change. It seems like I want a `units='xy'` option, to get the right scaling along each axis, but it does not exist. However I can "fake it" pretty well by plotting first with lines and then on top of that doing quiver(x[1:],y[1:],u,v, pivot='tip', angles='xy') Thanks, Alan |