MATLAB Function Reference
  Go to function:
    Search    Help Desk 
stream2    Examples   See Also

Compute 2-D stream line data

Syntax

Description

XY = stream2(x,y,u,v,startx,starty) computes stream lines from vector data u and v. The arrays x and y define the coordinates for u and v and must be monotonic and 2-D plaid (such as the data produced by meshgrid). startx and starty define the starting positions of the stream lines. The returned value XY contains a cell array of vertex arrays.

XY = stream2(u,v,startx,starty) assumes the arrays x and y are defined as [x,y] = meshgrid(1:n,1:m) where [m,n] = size(u).

XY = stream2(...,options) specifies the options used when creating the stream lines. Define options as a one or two element vector containing the step size or the step size and the maximum number of vertices in a stream line:

or

If you do not specify a value, MATLAB uses the default:

Use the streamline command to plot the data returned by stream2.

Examples

This example draws 2-D stream lines from data representing air currents over regions of North America.

See Also

coneplot, isosurface, reducevolume smooth3, stream3, streamline, subvolume



[ Previous | Help Desk | Next ]