|
Contents | Previous | Next | Subchapters |
| Syntax |
gtitle(title) |
| See Also | title , gxyztitle , gfont , gaddtext |
| Menu Command | Graphics | Viewport | Title . . . |
ginit
theta = 0. : .1 : 2 * pi
gplot(theta, sin(theta))
gtitle("sin(theta)")
O-Matrix will put a title at the top of a plot of the sine function.
title instead of gtitle.
If in Mlmode you enter,
omginit;
theta = 0. : .1 : 2 * pi;
plot(theta, sin(theta));
title('sin(theta)');
O-Matrix will put a title at the top of a plot of the sine function.