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

Popular posts from this blog

javascript - Add class to another page attribute using URL id - Jquery -

android - MPAndroidChart - How to add Annotations or images to the chart -

IF statement in MySQL trigger -