home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 4.ddi / OPTIM.DI$ / BANPLOT.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  215 b   |  6 lines

  1. function out = banplot(x,OLDX)
  2. %BANPLOT    Plots one step of solution path. Used by BANDEMO.
  3. plot([OLDX(1),x(1)],[OLDX(2),x(2)],'r-',x(1),x(2),'o','Erasemode','none')
  4. drawnow; % Draws current graph now 
  5. out = [];
  6.