| |
- active2gif(file)
- Plot active VCS canvas to GIF file.
Input:
* file: Filename. String scalar.
* sysvar: IaGraph system variable object. Set to the global
object established at package import. This keyword should
never have to be set manually.
Output:
* GIF file of plot (landscape). Existing file overwritten.
Example:
>>> import Numeric
>>> from IaGraph.plot import plot
>>> from IaGraph.active2gif import active2gif
>>> x = Numeric.arange(100.)/Numeric.pi
>>> y = Numeric.sin(x)
>>> plot(x, y, psym=3)
>>> active2gif('file.gif')
|