plot3

Type: External

Group: graphics

Syntax

plot3(x-values, y-values, z-values, [graph settings])

Description

Plots a 3 dimensional graph of the supplied points.

Notes

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

Examples

t = 0:0.5:100; plot3(SIN(t), COS(t), t/100);

See Also

plot, plotfunction