|
From: Petr M. <mi...@ph...> - 2007-04-12 20:59:54
|
> > Octave is getting M* compatibility, where the "set"-like commands are > > written after(!) the plot command, and thus it usually needs several (fast) > > redraws with the original data. > > I don't think that conclusion is strictly true. The octave side of things > could observe the command stream and hold back on the 'plot' command until > after the stream of 'set' commands is at its end. It does not work as you think. Plot appears after each plot command, and is redrawn after each "set" command which changes properties of that plot. See help automatic_replot for more details. (It should be set to 1 for M* compatibility.) --- PM |