matlab - Saving confusion matrix as an image file -
is there way in matlab store results of plotconfusion (x,y)
specified file location image file? code version of save as?
as figure file, want use saveas() ("help saveas"). image file, try print() ("help print"). examples:
print(gcf, '-dpng', 'out.png'); saveas(gcf, 'out.fig');
Comments
Post a Comment