|
From: Ryan K. <rya...@gm...> - 2006-02-13 14:52:56
|
What version are you using? I know that CVS matplotlib works with
numpy and I think the latest releases do as well. I think the current
version is 0.86.2
On 2/13/06, Bill Baxter <wb...@gm...> wrote:
> Anyone know if matplotlib is supposed to work with the new NumPy or if th=
ere
> is work afoot to make it work?
> It seems to truncate all numpy.array and numpy.matrix inputs to integer
> values:
>
> import matplotlib
> matplotlib.interactive(True)
> matplotlib.use('WXAgg')
> import matplotlib.pylab as g
>
> g.plot(rand(5),rand(5),'bo')
>
> just puts a dot at (0,0), while this
>
> g.plot(rand(5)*10,rand(5)*10,'bo')
>
> generates a plot of 5 points but all at integer coordinates.
>
>
> --bb
>
|