Main
Home
Quick tour
Documentation
Mailing Lists
Demonstration
Download
Sourceforge project
FAQ
History
Links


Toolboxes
Char
Control
Crypto
Finance
FunFun
General
Graphics
Image
Internal
InputOutput
LinearAlgebra
Matrix
Miscellaneous
Net
Polynomial
Set
Signal
SpecFun
SpecialMatrix
Statistics
String
System
Time
Trigonometric
...


Contact
Developers

JMathLib
A Java Clone of Octave, SciLab, Freemat and Matlab.

[Index] [Documentation] [Demonstration] [Download]

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);

Last modified
SourceForge Logo