why I can't export the training plot
1 次查看(过去 30 天)
显示 更早的评论
i don't have any option to export the trainng plot. can someone suggest what shouuld I do expcept taking screenshot.
1 个评论
Tereza Simralova
2022-4-30
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')
采纳的回答
KSSV
2022-4-20
Try:
currentfig = findall(groot, 'Tag', 'NNET_CNN_TRAININGPLOT_UIFIGURE');
savefig(currentfig,['Training,','.fig']);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!