|
From: <gia...@po...> - 2013-01-04 11:55:00
|
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
|