⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simulateslc.m

📁 荷兰Delft大学开发的insar(干涉合成孔径雷达)图像处理部分源代码
💻 M
字号:
function slc = simulateslc(lines, pixels);% SIMULATESLC  generate a SLC image%   SIMULATESLC(N) returns a simulated Single Look Complex %   radar image of size NxN.%   SIMULATESLC(N,M) returns size NxM.%%   phase is simulated as: 2*pi*rand(N,M)%   ampli is simulated as: sqrt(-log(rand(N,M)))%%   not band limited or shifted%   See also RAND, FRACSURF,%% $Revision: 1.3 $  $Date: 2001/03/16 13:47:05 $%// Bert Kampes, 16-Jun-2000%%% Handle inputif ( argv == 1 ) pixels = lines; end;% simulate data rule of paper% Ramon Hanssen and Richard Bamler.% Evaluation of interpolation kernels for SAR interferometry.% IEEE Trans. on Geoscience and Remote Sensing,% 37(1):318-321, January 1999.%phase = 2*pi*rand(lines,pixels);%ampli = sqrt(-log(rand(lines,pixels)));%slc   = ampli .* exp(i*phase);slc   = sqrt(-log(rand(lines,pixels))) .* exp(i*2*pi*rand(lines,pixels));%DATA  = fftshift(fft(data));%%% EOF

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -