active2gif (version 0.3.1.1)
index
active2gif.py

Single-procedure module.
 
See procedure docstring for description.

 
Functions
       
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')

 
Data
        __version__ = '0.3.1.1'