标签: matlab matrix
matlab中有没有办法将plotconfusion (x,y)的结果存储到指定的文件位置作为图像文件?就像保存为?
plotconfusion (x,y)
答案 0 :(得分:0)
作为图形文件,您想使用saveas()(“help saveas”)。作为图像文件,请尝试print()(“帮助打印”)。例子:
print(gcf, '-dpng', 'out.png'); saveas(gcf, 'out.fig');