3-D line plot
plot3(X1,Y1,Z1,...)
plot3(X1,Y1,Z1,LineSpec,...)
plot3(...,'PropertyName
',PropertyValue,...)
plot3(ax,...)
h = plot3(...)
The plot3
function displays a three-dimensional
plot of a set of data points.
plot3(X1,Y1,Z1,...)
,
where X1
, Y1
, Z1
are
vectors or matrices, plots one or more lines in three-dimensional
space through the points whose coordinates are the elements of X1
, Y1
,
and Z1
. The values in X1
, Y1
,
and Z1
can be numeric or datetime or duration values.
plot3(X1,Y1,Z1,LineSpec,...)
creates and displays all lines defined by the Xn,Yn,Zn,LineSpec
quads,
where LineSpec
is a line specification that determines
line style, marker symbol, and color of the plotted lines.
plot3(...,'
sets line properties to the specified property values for all the
charting lines created by PropertyName
',PropertyValue,...)plot3
. See Chart Line Properties for a description
of the properties you can set.
plot3(ax,...)
creates the line in the axes
specified by ax
instead of in the current axes
(gca
). The option ax
can precede
any of the input argument combinations in the previous syntaxes.
h = plot3(...)
returns
a column vector of chart line objects.