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

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -