From octave-maintainers-request at bevo dot che dot wisc dot edu Mon Nov 17 09:34:10 2003 Subject: Re: 2.1.51 and reshape() From: "John W. Eaton" To: "Paul Soderlind" Cc: octave-maintainers mailing list Date: Mon, 17 Nov 2003 09:34:09 -0600 On 17-Nov-2003, Paul Soderlind wrote: | (2) multiplot/mplot fails on | | b = linspace(-3,3,20)'; | multiplot(2,2); | gset('nokey'); | | title('Fig 1'); | mplot(b,cos(b)); | | title('2'); | mplot(b,sin(b)); | | %multiplot(0,0); %uncomment to see yet another strange | behaviour | %gset('key'); This problem is happening because the default value of automatic_replot has been changed from false to true. I don't see an easy fix other than setting automatic_replot to false before you start a series of mplot commands. Should mplot do that for you? If so, then I see no easy way to reset it automatically. jwe