📄 soplot.m
字号:
function soplot
% function SOPLOT.M
% Creates images of the uncompensated and compensated data% Conversion of data to decibelsclear all; close all; load sdata;hs = 20.* log10(abs(hs)) - 20*log10(noisefloor);hc = 20.* log10(abs(hc)) - 20*log10(noisefloor);xxx=linspace(-pi/dkx,pi/dkx,size(hc,2));yyy=linspace(-pi/dky,pi/dky,size(hc,2));% Plots
image(xxx,yyy,hs);colormap('gray');brighten(.5)title('Image before Interpolation')axis('image')xlabel('Slant-range (m)');ylabel('Cross-range (m)')%pausefigureimage(xxx,yyy,hc);colormap('gray');brighten(.5)title('Interpolated Image')axis('image')xlabel('Slant-range (m)');ylabel('Cross-ranre (m)')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -