home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-06-19 | 337 b | 17 lines | [TEXT/ttxt] |
- // Example plot
-
- x = (0:10:.05)';
- y = x.^2;
-
- pstart ();
- plfont(2); // Roman font
- plwid(2); // line width
-
- ptitle ("#frJust For Fun, #fiJust For Fun, #fsJust For Fun");
- xlabel ("#ga"); // this is alpha
- ylabel ("#gb=#ga#u2#d"); // alpha = beta^2
- plot ([x,y]);
-
- //send Postscript output to file fun.ps
- //plprint ("fun.ps");
-