为什么在从我的 .m & 制作独立的 .exe 时会出现此警告? .fig 文件?

发布于 2024-12-06 03:59:16 字数 418 浏览 0 评论 0原文

看到我有一个 .m 文件 &与该 .m 文件关联的 gui 功能的 .fig 文件现在用于为

我正在使用的

 mcc -m  -mv jig322.m jig322.fig

.m 文件制作独立的 .exe 文件,在执行此操作后,我收到这样的警告,

Warning: No matching builtin function available for C:\MATLAB7\toolbox\simulink\simulink\set_param.bi

我不明白为什么会出现此警告?

&在此之后,所有 ma exe 都已准备就绪,但它不能 100% 通过执行某些函数而崩溃? 为什么这一切会发生在这里?我怎样才能让我的exe更好地工作?

see i have one .m file & .fig file for gui feature associated with that .m file now for making standalone .exe file for that .m file

i am using

 mcc -m  -mv jig322.m jig322.fig

after doing this i get warning like this

Warning: No matching builtin function available for C:\MATLAB7\toolbox\simulink\simulink\set_param.bi

i am not getting why this warning comes ?

& after this all ma exe becomes ready but it doesn't work 100% by executing some function it gets crash ?
why this all is happening here? how can i make my exe to better work?

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

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

发布评论

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

评论(1

究竟谁懂我的在乎 2024-12-13 03:59:16

根据 MathWorks 支持,需要注释掉

set_param(0,'PaperType',defaultpaper);
set_param(0,'PaperUnits',defaultunits);

C:\MATLAB7\toolbox\compiler\deploy\matlabrc.m中的

以下两行,然后调用rehash toolboxcache在 MATLAB 提示符下。请参阅上述链接 了解详情。

According to MathWorks Support, you need to comment out the following two lines

set_param(0,'PaperType',defaultpaper);
set_param(0,'PaperUnits',defaultunits);

from C:\MATLAB7\toolbox\compiler\deploy\matlabrc.m

and then call rehash toolboxcache at the MATLAB prompt. See the above link for details.

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