Some news from the psi front / one pycrust variant for win users

Hi all,

New packages related to psi

- psi has the capabilitiy to plot data from within the python shell:
modules psiplot and psiplotz. There is now a variant of these modules
using the Python new class style: NCpsiplot and NCpsiplotz

classic style:

import psiplot
c = psiplot.cpsiplot(me)
c['datax'] = range(11)
c['datay'] = range(11)
c.plot()

new style:

import NCpsiplot
c = NCpsiplot.cpsiplot(me)
c.datax = range(11)
c.datay = range(11)
c.plot()

- module psiDisplayImage. A small module to display an image.

from psiDisplayImage import dimg
dimg(me, 'surprise.png')

Where Pages Persos Chez.com

Have all a nice week end.

Jean-Michel Fauth, Switzerland