plot3(x-values, y-values, z-values, [graph settings])
Plots a 3 dimensional graph of the supplied points.
graph settings
color
y yellow
m magenta
c cyan
r red
g green
b blue
w white
k black
linestyle
- solid
: dotted
-. dashdot
-- dashed
marker
. point
o circle
x x-mark
+ plus
* star
s square
d diamond
v triangle (down)
^ triangle (up)
< triangle (left)
> triangle (right)
p pentagram
h hexagram
t = 0:0.5:100;
plot3(SIN(t), COS(t), t/100);