MATLAB: How to increase resolution of Matlab display

#matlabfigureresolutiontif

Hello all,
I want to save MATLAB display as .tif file with higher resolution of up to 600 dpi. This file is to be used for publication purpose. Can somebody please guide me how can I change display resolution of Matlab output and successfully save the same. Thank you in advance,
Sincerely, Nikhil

Best Answer

If it's a figure with handle hFigure that you want to convert to .tif, you could do
print(hFigure,'-dtiff', '-r600', filename)
If you mean you want the image of the MATLAB command window itself... no idea.