[Matplotlib-users] keeping zoom...

2007-06-18 Thread fred
Hi,

I want to keep the image zoomed to the same factor for all my images.

If I try

ipython -pylab
imshow(rand(50,50))

then zoom with the mouse and redo

imshow(rand(50,50))

the zoom factor is not kept, ie xrange/yrange are still (0,50).

How can I keep the zoom factor ?

TIA.


Cheers,

-- 
http://scipy.org/FredericPetit


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] keeping zoom...

2007-06-18 Thread Jouni K . Seppänen
fred [EMAIL PROTECTED] writes:

 imshow(rand(50,50))
 then zoom with the mouse and redo
 imshow(rand(50,50))
 the zoom factor is not kept, ie xrange/yrange are still (0,50).

 How can I keep the zoom factor ?

Try:

imshow(rand(50,50))
# zoom with mouse
xlim=getp(gca(), 'xlim'); ylim = getp(gca(), 'ylim')
imshow(rand(50,50))
setp(gca(), 'xlim', xlim); setp(gca(), 'ylim', ylim)

-- 
Jouni K. Seppänen
http://www.iki.fi/jks


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] jython and matplotlib

2007-06-18 Thread Duncan Child
We would like to provide a Matplotlib-like plotting function in a Java
application we are building.  We can't require our users to install
native code so we can't use Matplotlib.

We have a simple implementation that would be sufficient for v1.0 of
our application that uses jython and jfreechart.

To re-implement the whole of Matplotlib would require a collaborative
effort and would take a while. You have to start somewhere though so I
thought I should post here to ask for advice.

Does anyone have any comments or suggestions?

Thanks,

Duncan

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] keeping zoom...

2007-06-18 Thread fred
fred a écrit :

I get anoter issue now.

How can I know if the displayed image has been zoomed or not
(I mean not on testing xlim  ylim) ?

TIA

-- 
http://scipy.org/FredericPetit


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users