MATLAB Function Reference Previous page   Next Page
quiver3

Three-dimensional velocity plot

Syntax

Description

A three-dimensional quiver plot displays vectors with components (u,v,w) at the points (x,y,z).

quiver3(x,y,z,u,v,w) plots vectors with components (u,v,w) at the points (x,y,z). The matrices x,y,z,u,v,w must all be the same size and contain the corresponding position and vector components.

quiver3(z,u,v,w) plots the vectors at the equally spaced surface points specified by matrix z. quiver3 automatically scales the vectors based on the distance between them to prevent them from overlapping.

quiver3(...,scale) automatically scales the vectors to prevent them from overlapping, then multiplies them by scale. scale = 2 doubles their relative length and scale = 0.5 halves them. Use scale = 0 to plot the vectors without the automatic scaling.

quiver3(...,LineSpec) specifies line type and color using any valid LineSpec.

quiver3(...,LineSpec,'filled') fills markers specified by LineSpec.

quiver3(axes_handles,...) plots into the axes with handle axes_handle instead of the current axes (gca).

h = quiver3(...) returns a vector of line handles.

Examples

Plot the surface normals of the function .

See Also

axis, contour, LineSpec, plot, plot3, quiver, surfnorm, view

Direction and Velocity Plots for related functions

Three-Dimensional Quiver Plots for more examples


Previous page  quiver Quivergroup Properties Next page

© 1994-2005 The MathWorks, Inc.