用MATLAB生成.exe文件时出现额外窗口问题

发布于 2024-11-13 02:16:39 字数 216 浏览 2 评论 0原文

通常我只是使用此命令开发 MATLAB 代码的可执行 (.exe) 文件:

mcc -m GUI.m

虽然 .exe 创建没有问题,但不幸的是,当我打开 .exe 时,还会打开一个黑色窗口(如命令提示符) ,所以总共有两个窗口... GUI 图形和提示符。我怎么没有这个提示呢?是否有任何设置可以包含在上面的 mcc 命令中?

谢谢。

usually i simply develop executable (.exe) files of my MATLAB codes by using this command:

mcc -m GUI.m

although there's no problem with the .exe creation, unfortunately when i opened the .exe, there's a black window (like command prompt) that is also opened, so two windows in total... the GUI figure and the prompt. how do i not have this prompt? is there any setting i can include in the mcc command as above?

Thanks.

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

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

发布评论

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

评论(1

得不到的就毁灭 2024-11-20 02:16:39

在 mcc 命令行中使用 -e 而不是 -m。这将改变它的编译方式(使其成为 GUI 应用程序而不是控制台应用程序),并隐藏命令窗口。需要视觉工作室。有关详细信息,请参阅doc mcc

Use -e instead of -m in the mcc command line. This will change how it's compiled (making it a GUI app instead of a console app), and suppress the command window. Requires Visual Studio. See doc mcc for details.

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