Re: [Matplotlib-users] Plotting one figure on sevral subplots

2007-09-07 Thread Matthieu Brucher

 Although I am not completely sure what you are asking, I think you are
 asking for:

 subplot(221)
 subplot(222)
 subplot(212)

 then the last subplot (bottom row) will span both columns.

 JDH



Thank you for the fast answer :)
That should be what I asked for. Won't the other subplots be erased ?

Matthieu
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Plotting one figure on sevral subplots

2007-09-07 Thread John Hunter
On 9/7/07, Matthieu Brucher [EMAIL PROTECTED] wrote:


 Thank you for the fast answer :)
 That should be what I asked for. Won't the other subplots be erased ?

Only if this subplots overlap -- in this case they do not.  When a
previous subplot is overlapped by a new subplot, the old one is
erased.

JDH

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Plotting one figure on sevral subplots

2007-09-07 Thread Matthieu Brucher

 Only if this subplots overlap -- in this case they do not.  When a
 previous subplot is overlapped by a new subplot, the old one is
 erased.



That means too that having a plot on 2/3 of the screen is not possible, I
suppose ?

Matthieu
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Plotting one figure on sevral subplots

2007-09-07 Thread John Hunter
On 9/7/07, Matthieu Brucher [EMAIL PROTECTED] wrote:

 That means too that having a plot on 2/3 of the screen is not possible, I
 suppose ?

To do that you need to use the axes command (a subplot is just a
special case of an axes on a regular grid).  For example, you could do
(the arguments are left, bottom, width, height)

axes([0.1, 0.7, 0.4, 0.25])
axes([0.55, 0.7, 0.4, 0.25])
axes([0.1, 0.1, 0.85, 0.55])

or some variant like that..

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users