How to deploy function from MATLAB to Microsoft excel?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Manoj kumar Beriya
le 23 Fév 2021
Commenté : Manoj kumar Beriya
le 28 Fév 2021
function ypred = mypredict(tbl)
%#function fitrtree
load('matlab.mat');
load('Trainingdata.mat')
ypred = trainedModel.predictFcn(Trainingdata);
end
This is made after trained the data from regression learner
How to deploy this function in form of web app and in excel to get new output by giving new inputs ?
0 commentaires
Réponse acceptée
Bhomik Kankaria
le 27 Fév 2021
Hi Manoj,
You can create Excel Add-In from MATLAB for your function to use in Excel. Refer below link to know more about the steps required to do the same-
3 commentaires
Bhomik Kankaria
le 27 Fév 2021
Modifié(e) : Bhomik Kankaria
le 27 Fév 2021
When compiling Excel add-ins or COM components from MATLAB using MinGW, you will also need to install Windows SDK 10.
See the following link on installing Windows SDK 10 with MinGW:
You can take a look at the software requirements for using the MATLAB Compiler with other MATLAB releases in the following link:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Enterprise Deployment with MATLAB Production Server dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!