codegen error at predict function

3 次查看(过去 30 天)
Kwanghyun Sohn
Kwanghyun Sohn 2021-3-29
编辑: Abhaya 2024-10-4
I am trying to convert my Matlab code to C++ using codegen function, but there is an error that I cannot fix.
There is no error when I use 2019b. But 2021a generate error message.
What should I do to avoid the error?
Part of my code:
Error message:
trainedInBedSVM use 'polynomial':

回答(1 个)

Abhaya
Abhaya 2024-10-4
编辑:Abhaya 2024-10-4
Hi Kwanghyun,
I encountered a similar issue when trying to use a saved model in MATLAB R2021a. I tried loading and saving the model again in MATLAB R2021a, and it fixed the error for me.
Please follow the steps given below to address the issue:
  • Load the model using MATLAB‘loadLearnerForCoder’function.
mdl = loadLearnerForCoder('CompactInBedSVM');
  • Save the model using MATLAB ‘saveLearnerForCoder’ function.
saveLearnerForCoder(mdl,'CompactInBedSVMNew');
For detailed information on these functions, please refer to the MATLAB documentation linked below.
Hope this helps

类别

Help CenterFile Exchange 中查找有关 MATLAB Coder 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by