[Matplotlib-users] Matching 3D axes size to 2D in mixed subplot

2010-07-15 Thread Jeff Berry
Hi, I'm using the new mixed axes feature in matplotlib 1.0.0 to combine 3D and 2D plots in a single figure. The problem is that the 3D axes have a lot of extra white space around them that prevents the plot to line up flush with the 2D plot. Here is an example image of this: using matplotlib:

Re: [Matplotlib-users] matplotlib with psyco

2010-07-15 Thread Stephen Evans
On 14/07/2010 23:32, Eric Firing wrote: > On 07/14/2010 11:41 AM, Stephen Evans wrote: > >> Hi, >> >> While testing Psyco V2 to see if it would offer any speed improvements I >> tried it with some applications using matplotlib. Exceptions were raised >> that were easily resolved by replacing ca

Re: [Matplotlib-users] print to aprint device!

2010-07-15 Thread Benjamin Root
Since no-one has replied to this, let me see if I can come up with an idea. Assuming you are using Linux or a Mac, I wonder if it is somehow possible to "save" a .ps file to a postscript device? I have never had to do any Linux magic with CUPS, so maybe this isn't possible. Anybody else have any

Re: [Matplotlib-users] scientific notation

2010-07-15 Thread Ryan May
On Thu, Jul 15, 2010 at 8:41 AM, Waléria Antunes David wrote: > Hi all, > > I have a code base so that: > > > from pylab import * > x = arange (3000,3400) > y = -108 * (3.0e14 ** 2)/x**2 > > pylab..title("Teste") > pylab.savefig("imagem.png") > plot(x, y) > > > Well the values of the function

Re: [Matplotlib-users] scientific notation

2010-07-15 Thread Waléria Antunes David
But, i don't know how do... I tried, but don't, most failed On Thu, Jul 15, 2010 at 11:25 AM, Benjamin Root wrote: > > On Thu, Jul 15, 2010 at 8:41 AM, Waléria Antunes David < > waleriantu...@gmail.com> wrote: > >> Hi all, >> >> I have a code base so that: >> >> >> from pylab import * >> x

Re: [Matplotlib-users] scientific notation

2010-07-15 Thread Benjamin Root
On Thu, Jul 15, 2010 at 8:41 AM, Waléria Antunes David < waleriantu...@gmail.com> wrote: > Hi all, > > I have a code base so that: > > > from pylab import * > x = arange (3000,3400) > y = -108 * (3.0e14 ** 2)/x**2 > > pylab..title("Teste") > pylab.savefig("imagem.png") > plot(x, y) > > > Well

[Matplotlib-users] scientific notation

2010-07-15 Thread Waléria Antunes David
Hi all, I have a code base so that: from pylab import * x = arange (3000,3400) y = -108 * (3.0e14 ** 2)/x**2 pylab..title("Teste") pylab.savefig("imagem.png") plot(x, y) Well the values of the function range(3000,3400) are in Hz..i need to pass GHz which would be in scientific notatio