adding space between subplots

I'm using subplot() to make two plots stacked on top of each other. The
problem is, the two plots are stacked *immediately* on top of each
other. How do I add vertical space between them, to separate them?

Thanks!

E

Erik Curiel wrote:

I'm using subplot() to make two plots stacked on top of each other. The
problem is, the two plots are stacked *immediately* on top of each

That is quite unusual. Are you sure you're using the subplot commands right?
e.g.
subplot(211)
plot([3,2,5,234])
subplot(212)
plot([3,2,5,234])

other. How do I add vertical space between them, to separate them?

There are differnt approaches. See that posting:

http://sourceforge.net/mailarchive/message.php?msg_id=12666937

Christian