用MATLAB生成.exe文件时出现额外窗口问题
通常我只是使用此命令开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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. Seedoc mcc
for details.