如何让Matlab m文件的输出停留一段时间
我有 matlab m 文件,它使用子图绘制 3 个图。现在我还有一个 UNIX 脚本,它调用该脚本并将函数名称作为参数传递。
我有两个问题:
- 我收到警告“提前输入缓冲区溢出”
- 该图仅保留几秒钟,然后消失。如何保持绘图处于活动状态直到用户单击十字按钮?
谢谢!
I have matlab m file which plots 3 graphs using subplot. Now i also have a UNIX script which invokes this script and passes the function name as parameter.
I have two problems:
- I am getting the warning Type-ahead buffer Overflow
- The plot remains only for a few seconds before disappearing. How can I keep plot active til l user clicks on cross button?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pause
命令等待用户按任意键。pause
command to wait for the user to press any key.