Hello,
I¹ve been trying to install matplotlib correctly for the past couple of
days.
I¹m using a macports python2.6 built with +universal on.
If I install with the the downloadable .egg file I end up with a message
that states that _path.so has problems. (built for 32bit I guess)
ImportError:
d
I have an array of images stored as an array of numpy arrays. I need to be
able to efficiently scroll through that set of images. My first attempt at
doing this goes something like this:
--init--
self.ax = pyplot.imshow(imgdta[0], interpolation='spline36',
cmap=cm.gray, picker=True)
I eventually got it to mostly work using:
³sudo port install py26-matplotlib @1.0.1 +gtk2²
It doesn't match the correct egg format it seems, but it does work.
On 8/10/11 11:01 AM, "David Just" wrote:
> Hello,
>
> I¹ve been trying to install matplotlib correctly for
Now that I¹m pre-building all my enlarged interpolated images to scroll
through, I¹m having trouble forcing the figure/FigureCanvas to be the size
I want.
I¹m trying:
fig.set_size_inches(768 / 72.0, 768 / 72.0), but it ends up the same size
as the default plot.
Thanks,
Dave
---
Sorry if this get¹s re-posted, my earlier e-mail didn¹t seem to go through.
I have an array of images stored as an array of numpy arrays. I need to be
able to efficiently scroll through that set of images. My first attempt at
doing this goes something like this:
--init--
self.ax = p