Save generated code in a special folder in quot;rtwbuildquot;(将生成的代码保存在“rtwbuild的特殊文件夹中)
问题描述
我正在使用 rtwbuild
从模拟图中生成 C++ 代码,并希望将生成的代码保存到任意目录.有什么办法吗?
I am using rtwbuild
to generated C++ code from a Simulation diagrams and would like to save generated code to an arbitrary directory. Is there any way to do so?
推荐答案
您可以通过 3 种不同的方式控制生成文件的文件夹.您可以在 Simulink Preferences 中设置代码生成文件夹"选项.您可以使用 File 菜单从任何模型访问 Simulink 首选项,然后选择 Simulink Preferences.这将更改所有模型的代码生成位置,并将在 MATLAB 会话中持续存在.
You can control the folder for generated files in 3 different ways. You can set the "Code generation folder" option in Simulink Preferences. You can reach to Simulink preferences from any model using File menu and then choosing Simulink Preferences. This will change the code generation location for all models and will persist across MATLAB sesstions.
其次,您可以在 MATLAB 中设置一个全局参数,该参数将再次控制所有模型的代码生成目录,但只会在该 MATLAB 会话中持续存在.例如,
Second you can set a global param in MATLAB which will again control code generation directory for all models but will persist only for that MATLAB session. For example,
set_param(0, 'CodegenFolder', fullfile('C:','Work','mymodelrtw'))
get_param(0, 'CodegenFolder')
您还可以使用 Simulink.fileGenControl 对象来设置 codegen 文件夹,如上面的会话参数.此对象对保留以前的文件夹路径和选择性地创建文件夹有更多的控制权.
You can also use Simulink.fileGenControl object to set the codegen folder like the session param above. This object has more control about retaining previous folder paths and creating the folder optionally.
在 查看这些文档http://www.mathworks.com/help/rtw/ug/control-the-location-for-generated-files.html
这篇关于将生成的代码保存在“rtwbuild"的特殊文件夹中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将生成的代码保存在“rtwbuild"的特殊文件夹中
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01