From bug-octave-request Thu Jun 24 09:36:03 1993 Subject: inhibited output From: hodelas at CONTROLS dot msfc dot nasa dot gov (A. Scott Hodel) To: bug-octave Date: Thu, 24 Jun 93 09:45:21 CDT Text output appears to be inhibited during script files: freq.m ------------------------------------------------------------------------ a = [-1 1;-1 -1] b = [0 ; 1] c = [1 0] j = sqrt(-1) om = logspace(-5,1,100) y = om-om; for i = 1:length(om) jom = j*om(i) y(i) = c*((jom*eye(2)-a)\b); end loglog(om,abs(y)) disp('press a key to continue') pause semilogx(om,angle(y)) The log-log plot appears, but no message about "press a key to continue." until after I press space bar and get the 2nd plot