如果我使用 saveas 命令将多个绘图保存为图像,我该如何显示它们。我正在使用的代码是:
if we==1
figure()
saveas(gcf(),'myownfile.jpg'); % save the figure if condition is satisfied
clf % clear the figure after saving it
end
如果 we==1 则程序检查条件,然后在保存绘图后清除图形。它是功能的一部分。而在函数中保存为图像的图必须显示在主函数中。代码是:
p=imread('myownfile.jpg');% read the image
imshow(p); %show the image
但我得到一个空白的数字。我不知道为什么?