|
Contents | Previous | Next | Subchapters |
| Syntax |
gaddwin(caption, geometry) |
| See Also | delwin , gplot , and gaddwin(caption, geometry, call back) |
| Menu Command | Graphics | Add Window |
clear
caption = "Test Plot"
geometry = [200, 100, 200, 100]
id = gaddwin(caption, geometry)
gplot(seq(3), seq(3))
O-Matrix will create a square graphic window and
plot a line in the window.
If you then enter
print id
O-Matrix will respond
1
which is the identifier for the new graphic window.