|
Contents | Previous | Next | Subchapters |
| Syntax |
gplot(x, y, style) |
gplot(x, y, z, style) | |
| See Also | gplot(x, y, z) , gplot(x, y, z, style, levels) |
ginit
x = 0. : .2 : 2 * pi
y = [sin(x), cos(x)]
gplot(x, y, "plus")
O-Matrix will draw the following plot
If you enter
ginit
y = 0. : .2 : 2 * pi
z = cos(4 * y)
x = sin(4 * y)
gplot(x, y, z, "dotted")
grotate(30, 0, 70)
gxtitle("x")
gytitle("y")
gztitle("z")
O-Matrix will draw the following plot