关于图像显示出现的一个警告
有时候图像显示会出现>>subplot(222),imshow(PSF,[]),title('PSF');
Warning: The initial magnification of the image is set to 'fit' in a docked figure.
> In imshow at 181
这样的警告,是不紧要的,只要改为
>>subplot(222),imshow(PSF,[],'InitialMagnification','fit'),title('PSF');
即可。
页:
[1]