Main Content

ezplot3

(Not recommended) 3-D parametric curve plotter

ezplot3 is not recommended. Use fplot3 instead.

Description

ezplot3(x,y,z) plots the spatial curve x = x(t), y = y(t), and z = z(t) over the default domain 0 < t < 2π.

ezplot3(x,y,z,[tmin,tmax]) plots the curve x = x(t), y = y(t), and z = z(t) over the domain tmin < t < tmax.

ezplot3(___,'animate') produces an animated trace of the spatial curve.

Examples

3-D Parametric Curve

Plot the parametric curve x = sin(t), y = cos(t), z = t over the domain [0, 6π].

syms t
ezplot3(sin(t), cos(t), t,[0,6*pi])

Input Arguments

collapse all

Input, specified as a symbolic function or expression.

Input, specified as a symbolic function or expression.

Input, specified as a symbolic function or expression.

Domain to plot over, specified as a symbolic vector. ezplot3 plots over the domain tmin < t < tmax

Version History

Introduced before R2006a

See Also

| | | | |