Plot window not responding

后端 未结 10 1917
北恋
北恋 2020-12-04 09:17

I\'m using Windows 7 64 bit. Each time, I\'m using plot function, plot windows will shows and draws successfully, but after that it stops responding and must shut down it.

10条回答
  •  甜味超标
    2020-12-04 09:59

    I had same problem, Sometimes linspace is showing you all results in command windows and waits for your interaction. add ; after command, or hit q to quit in command window x = linspace(0,10,100);

    Permanent solution, edited

    Disable paging of screen output by putting more off into octave command window. This will prevent code to wait until you see all rows.

    If you want turn this back on, use more on

    documentation

    Related questions

    prevent-user-interaction-on-command-window-for-octave

    Can't stop execution in gui command window

提交回复
热议问题