subplot problem

Hi,

I have a problem using subplot:

if I do:

subplot(2,1,1)
plot([0,1],[0,1])
subplot(2,1,2)
plot([0,1],[0,0.8])

then the first plot is ok, but the second one never shows up (everything keeps being posted in the first subplot).

It only works if I am removing the commas :

subplot(211)
plot([0,1],[0,1])
subplot(212)
plot([0,1],[0,0.8])

but of course then I cannot use more than 10 Numplots.... and many of my scripts fail...

Any hint of what may go wrong there?

Thanks!!

Eric

···

--

Observatoire de Lyon emsellem@...419...
9 av. Charles-Andre tel: +33 4 78 86 83 84
69561 Saint-Genis Laval Cedex fax: +33 4 78 86 83 86
France http://www-obs.univ-lyon1.fr/eric.emsellem

Ditto here.
Seems to have been introduced somewhere from version > 0.80.

version 0.8 works for me. version 0.82 doesn't.

Cheers,
Malte.