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!