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

Reply via email to