필터 지우기
필터 지우기

Exporting the plot in regression learner

조회 수: 1 (최근 30일)
Balantrapu Sai harshit
Balantrapu Sai harshit 2020년 8월 14일
댓글: Adam Danz 2020년 8월 17일
How to download the plots that we got in regression learner app after training our model in versionR2018a. Please help me with this answer fastly.
  댓글 수: 2
Balantrapu Sai harshit
Balantrapu Sai harshit 2020년 8월 17일
Thanks I got it
Adam Danz
Adam Danz 2020년 8월 17일
Glad I could help!

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

채택된 답변

Adam Danz
Adam Danz 2020년 8월 14일
편집: Adam Danz 2020년 8월 14일
Option 1
Export the figure from the Regression Learner App (red box below).
Option 2
Export the axes programmatically (tested in r2019b).
% Get the handle to the Regression Learner App
RLapp = findall(0,'Type','Figure','tag','MLearnAppTraceFigure');
% Get the handle to the axes with the data
RLax = findall(RLapp, 'Type', 'Axes','Tag', 'MLearnAppTraceAxes');
% Create a new figure
newfig = figure();
% Copy the app axes to the new figure
newAxes = copyobj(RLax,newfig);

추가 답변 (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