Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | display | |
Module | plotter | |
Tool | pgplotter |
y | A collection of Y vectors | ||
Allowed: | float | ||
xlab | A label for the X axis | ||
Allowed: | string | ||
ylab | A label for the Y axis | ||
Allowed: | string | ||
tlab | A label for the plot title | ||
Allowed: | string | ||
plotlines | Toggle for plotting lines or points | ||
Allowed: | Boolean | ||
Default: | T (lines) | ||
ptsymbol | Symbol ID | ||
Allowed: | integer | ||
Default: | 2 |
include 'pgplotter.g' pg := pgplotter(); x := 1:100; y := sqrt(x); pg.ploty(y,'X','Y','TITLE'); pg.ploty(y*2,,'Y2');