I am trying use the print command in MATLAB to save a scatter plot as a TIFF in the current folder. However, I get the following error message: Cannot create output file '.\test.tif'
My code looks like the following:
hold on
plot(x,y,'-r','LineWidth',4)
plot(x2,y2,'--xk','LineWidth',4,'MarkerSize',10);
hold off
print -dtiff -r300 test.tif
Does anyone know how I can successfully save my file?