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

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

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