如何使用 matlab 将 contourf 图保存为图像 (.jpg)?

How to save contourf figure to image (.jpg) using matlab?

我想将 contourf 的图形保存为图像 (.jpg)。我尝试使用 saveas(gcf, output, 'jpg') 结果是空白的 .jpg 文件。你能帮我把 plot contourf 保存在我的电脑里吗?

contourf(L, jml_level)
colormap autumn
figure

This is result of contourf

谢谢。

您可以使用图形句柄来指示要保存哪个图形

fig1 = figure;
contourf(L, jml_level)
colormap autumn
saveas(fig1,'cont.png')