Re: [Matplotlib-users] problem with axes size

2006-10-16 Thread Stefan van der Walt
On Sun, Oct 15, 2006 at 09:31:32PM -0200, Flavio Coelho wrote: Hi, I am having a strange behavior with the size of axes in imshow. the attached code worked fine with an older version of Pylab, but with the latest SVN, the plots are appearing very narrow (vertically)in the middle of the

Re: [Matplotlib-users] svn revision 2814 does not compile

2006-10-16 Thread Xavier Gnata
Hum it looks like a real bug in ./CXX/Objects.hxx Line 1938 should be ~mapref() and not ~maprefT() It used to compile bug it is not true any more using gcc version 4.1.2 20061007 (prerelease) (Debian 4.1.1-16) According to C++ iso standard, ~maprefT() seems to be wrong code so could you

Re: [Matplotlib-users] svn revision 2814 does not compile

2006-10-16 Thread John Hunter
Xavier == Xavier Gnata [EMAIL PROTECTED] writes: Xavier Hum it looks like a real bug in ./CXX/Objects.hxx Line Xavier 1938 should be ~mapref() and not ~maprefT() It used to Xavier compile bug it is not true any more using gcc version Xavier 4.1.2 20061007 (prerelease) (Debian

[Matplotlib-users] plotting contour line in matplotlib

2006-10-16 Thread web_mail net
i need a tutorial on plotting countour linesgave me a url Find out what India is talking about on - Yahoo! Answers India Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW- Using

[Matplotlib-users] Alloc error

2006-10-16 Thread Tommy Grav
Hi,     I am currently running ActivePython 2.4.3 b11, with numpy 1.12881 and matplotlib 0.87.4. Running a code developed before I upgraded using theScipy Superpack for Mac (PowerPc) available at http://www.scipy.org/DownloadI get this error:[EMAIL PROTECTED] Spitzer/Objects - redspit -i

Re: [Matplotlib-users] Alloc error

2006-10-16 Thread Tommy Grav
Hi,   I figured out that I could get matplotlib 0.87.6 for python 2.4 and have downloaded this and installed it. It seems to work, except when I try to do thisActivePython 2.4.3 Build 11 (ActiveState Software Inc.) based onPython 2.4.3 (#1, Apr  3 2006, 18:07:18) [GCC 3.3 20030304 (Apple Computer,

Re: [Matplotlib-users] bug or feature?

2006-10-16 Thread Eric Firing
What you see is a design limitation rather than a bug or feature. One easy workaround is to use the shrink kwarg. See examples/contour_demo.py. Another approach is to create the axes object you want for the colorbar manually, as in examples/multi_image.py and examples/subplots_adjust.py.

Re: [Matplotlib-users] contour bug?

2006-10-16 Thread Eric Firing
[EMAIL PROTECTED] wrote: Le lundi 16 octobre 2006 15:55, Eric Firing a écrit : [EMAIL PROTECTED] wrote: I thing there are a small problem with contour. import pyfits import pylab data = pyfits.getdata('test.fits') pylab.imshow(data,cmap=cm.gray) pylab.contour(data) #to have the result