我正在尝试使用 MATLAB 中的打印命令将散点图另存为当前文件夹中的 TIFF。但是,我收到以下错误消息:Cannot create output file '.\test.tif'
我的代码如下所示:
hold on
plot(x,y,'-r','LineWidth',4)
plot(x2,y2,'--xk','LineWidth',4,'MarkerSize',10);
hold off
print -dtiff -r300 test.tif
有谁知道我怎样才能成功保存我的文件?