On 3/21/07, Michael Lerner <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to make a figure that has three subplots.  The top one should
> be a big, mostly square thing.  The bottom two should be rectangular
> things.  That is, I want it to look like this:
>
> XXXXX
> XXXXX
> XXXXX
> XXXXX
>
> XXXXX
> XXXXX
>
> XXXXX
> XXXXX
>
> so, I'm using subplot(311), subplot(312), subplot(313).  But, things
> are getting resized so that each of the rows has the same height.
> That really messes up the aspect ratio for my top row.

The following might hrlp:

ax1 = subplot(211)
ax2 = subplot(413)
ax3 = subplot(414)

JDH

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to