First using Matlab command window to to the directory where you kept the .tiff image(using command cd). Then type imdata = imread('yourfilename.tif'). you will find a variable named imdata in your workspace it assures you that you have successfully extracted the image data. Then type image(imdata);figure(gcf); It will open a new figure window with your image that you wanted to convert. Now go to your figure window and from the file menu save it as .fig(Matlab format).
First using Matlab command window to to the directory where you kept the .tiff image(using command cd). Then type imdata = imread('yourfilename.tif'). you will find a variable named imdata in your workspace it assures you that you have successfully extracted the image data. Then type image(imdata);figure(gcf); It will open a new figure window with your image that you wanted to convert. Now go to your figure window and from the file menu save it as .fig(Matlab format).
Thank you so much for your answers,,, It really helped me. My fig file is coming different( may be I am using different version or OS for opening it ) than I saved it. But it was saved in tiff format so now I can easily get the same one which I saved.