How to deploy function from MATLAB to Microsoft excel?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Bhomik Kankaria
2021-2-27
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 个评论
Bhomik Kankaria
2021-2-27
编辑:Bhomik Kankaria
2021-2-27
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:
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Enterprise Deployment with MATLAB Production Server 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!