|
Contents | Previous | Next | Subchapters |
| Syntax |
gxgrid(grid type)grid type) |
| See Also | gxaxis(type, min, max, major, minor) , |
| Menu Command | Graphics | Axis | Grid . . . |
ginit
x = 0. : .1 : 10
y = 5. - abs(x - 5.)
gplot(x, y)
gxaxis("linear", 0, 10, 5, 2)
gyaxis("linear", 0, 10, 5, 2)
gxgrid("minor")
gygrid("major")
O-Matrix will draw a plot with 1 unit between the x grid line
and 2 units between the y grid lines.