我在生成c代码的时候遇到了这样的问题,有没有大神可以帮忙看看,感激不尽!!!!
44 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
错误:创建代码接口描述文件 codeInfo.mat 时出现内部错误。正在中止代码生成。
原因:
Simulink 对象名称无效: 'Ramjet'。
The block diagram 'Ramjet' is not loaded.
0 commentaires
Réponses (1)
Amish
le 14 Nov 2023
Hi 艳荣,
请注意,我会用英语回答,因为中文不是我的主要语言。
(Please note that I will answer in English as Chinese is not my primary language)
As I can understand from the translation in English, I see that you are facing issues with generating C Code. The error that you are facing in here is quite common and can be easily resolved.
The error part saying, “The block diagram 'Ramjet' is not loaded” tells that the model you are trying to generate code for is not correctly loaded. You can load the model by using the command:
load_system <model name>
Once it loaded, it is always beneficial to check if it has been loaded correctly. You can do this by using the command:
which <Model name> -all
In a rare case that this does not solve your error, check for duplicates of the "coderInfo.mat" file and remove the ones unrelated to the project.
Documentation Links for your reference:
Load Model:
Another answer with similar error:
Hope this helps!
1 commentaire
genqiang lan
le 28 Fév 2024
I have encountered a similar problem. Do you know how to solve it? Thank you!

Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!