如何通过MATLAB打开画图?

发布于 2024-10-30 14:59:45 字数 35 浏览 1 评论 0原文

有没有办法可以从 MATLAB 打开 MS Paint?

Is there a way through which we can open MS Paint from MATLAB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浮萍、无处依 2024-11-06 14:59:45

请尝试此操作

system('mspaint');

如果您想打开特定文件,然后使用正确的文件名构建字符串,

try this

system('mspaint');

if you want to open a specific file then build up the string with the correct filename

隔岸观火 2024-11-06 14:59:45

尝试

winopen('image.bmp')

或尝试

help system
help dos
help unix

try

winopen('image.bmp')

or try

help system
help dos
help unix
鹊巢 2024-11-06 14:59:45

如果您想打开 MS Paint 并立即将控制权返回给 MATLAB(即 MATLAB 不会等待程序关闭),那么您可以使用 爆炸运算符 ! 就像所以:

!mspaint &

或者您可以使用 SYSTEM 命令作为 mor22 建议,并在末尾添加 &字符串的:

system('mspaint &');

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:

!mspaint &

Or you could use the SYSTEM command as mor22 suggested with & added to the end of the string:

system('mspaint &');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文