In the "Export Regression Model to Predict New Data" under the "Deploy Predictions Using MATLAB Compiler", what does cartable.mat stands for?
1 view (last 30 days)
Show older comments
I am using regression app for developing machine learning algorithm. After I have developed model, I would like to create a MATLAB app for it. When I went through the documentation, I was able to find a help (https://in.mathworks.com/help/stats/export-regression-model-to-predict-new-data.html). Under this in "Deploy Predictions Using MATLAB Compiler", they have suggested some steps. But on trying those steps, I am getting error?
The step is that they have asked to create a function and then run it
function ypred = mypredict(tbl)
%#function fitrtree
load('mymodel.mat');
load('cartable.mat')
ypred = trainedModel.predictFcn(cartable)
end
But, when i run the function, I am getting an error.
error using load
Unable to read file 'cartable.mat'. No such file or
directory.
Error in mypredict (line 4)
load('cartable.mat')
In the documentation it is mentioned that, "It must also have a pragma, so the compiler recognizes that Statistics and Machine Learning Toolbox™ code is needed in the compiled application. This pragma could be any function in the toolbox." I am not understanding this part. What does it mean by any function in the toolbox. What is cartable.mat?
How to overcome this error?
3 Comments
Answers (1)
robin thomas
on 10 Dec 2019
I am getting the below error in matlab command line;
function ypred = mypredict(tbl)
↑
Error: Function definition not supported in this context. Create functions in code file.
what is 'tbl'?
0 Comments
See Also
Categories
Find more on Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!