<< plot | Graphics functions | quiver >> |
plot3(X1, Y1, Z1, ...) |
plot3(X1, Y1, Z1, LineSpec, ...) |
plot3(..., propertyName, propertyValue, ...) |
plot3(ax, ...) |
go = plot3(...) |
x-coordinates: vector or matrix.
y-coordinates: vector or matrix.
z-coordinates: vector or matrix.
Line style, marker, and/or color: character vector or scalar string.
a scalar graphics object value: parent container, specified as a axes.
a scalar string or row vector character. see help of 'line' for property list.
a value.
a graphics object: line type.
plot3(X1, Y1, Z1, ...)plots one or more lines in three-dimensional space.
go = plot3(...) returns a column vector of line graphics objects.
see line or plot for more information about properties
f = figure();
t = 0:pi/50:10*pi;
L = plot3(sin(t), cos(t), t);
axis square
f = figure();
t = 0:0.1:10*pi;
r = linspace (0, 1, length(t));
z = linspace (0, 1, length(t));
h = plot3 (r .* cos (t), r .* sin (t), z);
ylabel ('r .* sin (t)');
xlabel ('r .* cos (t)');
zlabel ('z');
title (_('plot3 display of 3-D helix'));
axis square
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET