On 5/10/07, Nils Wagner <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> How can I increase the distance between the title and the spy plot ?
>
> I have used
>
> figure(1)
> subplot(121)
> spy(M_bc)
> title(r'$M_{red}$')
> subplot(122)
> title(r'$K_{red}$')
> spy(K_bc)
>

You can set the "y" attribute of the title, either with

title('my title', y=1.05)

or

t = title('my title')
t.set_y(1.05)


JDH

-------------------------------------------------------------------------
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

Reply via email to