为什么在从我的 .m & 制作独立的 .exe 时会出现此警告? .fig 文件?
看到我有一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 MathWorks 支持,需要注释掉
C:\MATLAB7\toolbox\compiler\deploy\matlabrc.m
中的以下两行,然后调用
rehash toolboxcache
在 MATLAB 提示符下。请参阅上述链接 了解详情。According to MathWorks Support, you need to comment out the following two lines
from
C:\MATLAB7\toolbox\compiler\deploy\matlabrc.m
and then call
rehash toolboxcache
at the MATLAB prompt. See the above link for details.