MATLAB: Pause program and await keypress

后端 未结 6 1816
旧巷少年郎
旧巷少年郎 2021-02-09 07:11

I am writing a program in which at some point a graph is plotted and displayed on screen. The user then needs to press \'y\' or \'n\' to accept or reject the graph. My current s

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-09 07:52

    Wait for buttonpress opens up a figure, which may be unwanted. Use instead

    pause('on');
    pause;
    

    which lets the user pause until a key is pressed.

提交回复
热议问题