I save my adaboot model as .mat file. I use this to load the model:
load('adaboost_23.mat')
But matlab coder cannot generate C/C++ code. So I change to:
coder.load('adaboost_23.mat')
Still not working:
How should I do it? Data type is ClassificationEnsemble.
