How to extract the predicted response from the Regression Learner App ?

조회 수: 5 (최근 30일)
After training a model using the Regression Learner App, how to extract the predicted response (values)?
Thank you.

채택된 답변

Bhargavi Maganuru
Bhargavi Maganuru 2019년 9월 12일
To extract the predicted response for trained data,
Select Response plot and click Export plot to Figure. It creates a figure from the plot.
To save data to workspace from the figure select File>Save Workspace. This creates a .mat file.
Load .mat file and get predicted responses
a=load('responses.mat');
PredictedResponses=a.yfit;
Hope this helps!
  댓글 수: 4
Pierre Guy
Pierre Guy 2019년 9월 13일
Thank you for your precious help.
Regards,
Balantrapu Sai harshit
Balantrapu Sai harshit 2020년 8월 14일
Can anyone briefly explain how to download the plots that we have predicted in Regression learner in R2018a

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by