如何通过MATLAB打开画图?
有没有办法可以从 MATLAB 打开 MS Paint?
Is there a way through which we can open MS Paint from MATLAB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法可以从 MATLAB 打开 MS Paint?
Is there a way through which we can open MS Paint from MATLAB?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
请尝试此操作
如果您想打开特定文件,然后使用正确的文件名构建字符串,
try this
if you want to open a specific file then build up the string with the correct filename
尝试
或尝试
try
or try
如果您想打开 MS Paint 并立即将控制权返回给 MATLAB(即 MATLAB 不会等待程序关闭),那么您可以使用 爆炸运算符
!
就像所以:或者您可以使用 SYSTEM 命令作为 mor22 建议,并在末尾添加
&
字符串的:If you want to open MS Paint and immediately return control to MATLAB (i.e. MATLAB won't wait for the program to be closed), then you can issue a command to the operating system using the bang operator
!
like so:Or you could use the SYSTEM command as mor22 suggested with
&
added to the end of the string: