why I can't export the training plot

5 views (last 30 days)
i don't have any option to export the trainng plot. can someone suggest what shouuld I do expcept taking screenshot.
  1 Comment
Tereza Simralova
Tereza Simralova on 30 Apr 2022
trainingPlot is automatically saved in the Result folder for each trial. You can open it in matlab using command openfig('trainingPlot.fig', 'visible')
openfig('trainingPlot.fig', 'visible')

Sign in to comment.

Accepted Answer

KSSV
KSSV on 20 Apr 2022
Try:
currentfig = findall(groot, 'Tag', 'NNET_CNN_TRAININGPLOT_UIFIGURE');
savefig(currentfig,['Training,','.fig']);
  1 Comment
new_user
new_user on 20 Apr 2022
Edited: new_user on 20 Apr 2022
can I export it as a an image file with specific resolution?? "exportgraphics(currentfig,'trg.png','Resolution',300)"

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!