matplotlib and scipy_core

Any idea how easy it will be to use matplotlib with scipy_core (rather
than Numeric and numarray)? Will it just be a matter of replacing the
import statements?

Chris

Chris Fonnesbeck wrote:

Any idea how easy it will be to use matplotlib with scipy_core?

At the moment it looks trivial. I have matplotlib 0.84 and "new scipy" installed and did:

ipython -pylab
import scipy as S
x=S.arange(10)
plot(x,x**2)

and got a plot.