| |
- active2ps(file)
- Plot active VCS canvas to Postscript file.
Input:
* file: Filename. String scalar.
Output:
* Postscript file of plot (landscape). Existing file overwritten.
Example:
>>> import Numeric
>>> from IaGraph.plot import plot
>>> from IaGraph.active2ps import active2ps
>>> x = Numeric.arange(100.)/Numeric.pi
>>> y = Numeric.sin(x)
>>> plot(x, y, psym=3)
>>> active2ps('file.ps')
|