two plots in a figure:
########################################################################
from pylab import *
...
f,a = subplots(nrows=2, sharex=False, sharey=False)
a[0].plot(x,f0(x))
ylabel('f1')
xlabel('t')
...
a[1].plot(x,f1(x))
ylabel('f2')
xlabel('t')
...
show()
########################################################################
but all i can get are labels for ONLY the lower subplot, what shoud I do?

any help will be appreciated

tia
                                                        gb


------------------------------------------------------------------------------
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to