从 matlab 执行文件
我在 Matlab 中有一个 simulink 模型。 如何从该模型构建执行文件?
I have a simulink model in Matlab.
how can I build excute file from that model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在 Matlab 中有一个 simulink 模型。 如何从该模型构建执行文件?
I have a simulink model in Matlab.
how can I build excute file from that model?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您将需要 Matlab 编译器 来执行此操作。它可能包含也可能不包含在您的 Matlab 安装中。该链接解释了如何操作和内容,并应提供使其正常工作所需的所有信息。我从来没有使用过它,所以我无法进一步帮助你。
You will need the Matlab compiler to do that. It may or may not be included in your Matlab install. The link explains the how and what and should provide all info you need to get it working. I've never used it, so I can't help you further.
如果您有 MATLAB 编译器工具箱,那么您只需在命令行中输入:
mcc -m yourmfilenamehere
If you have the MATLAB compiler toolbox, then all you have to type into the command line is:
mcc -m yourmfilenamehere
MATLAB 编译器无济于事,您需要 Real-Time Workshop 从 Simulink 模型生成 C 代码。
The MATLAB compiler won't help, you need Real-Time Workshop to generate C code from a Simulink model.