资源简介
《合成孔径雷达成像算法与实现》一书附带光盘中数据读取程序及文档说明
代码片段和文件信息
% compute_azim_spectra.m
% ----------------------
%
% Divides the range swath (range cells) of this block into Nspect sections
% and finds the average power spectrum for each segment.
%
% Fits a parabola to the baseband Doppler centroid vs. range
% This fit is most useful if the whole range swath is selected but the
% computing times get large if more than 1024 range lines (azimuth cells)
% are selected in one run.
%
% Run “specify_run_parameters.m“ and “extract_data.m“ first to extract
% the data from the CD. The data can be stored in MAT or binary files.
% -------------------------------------------------------------------------
% Load the parameters for this run
clear format compact
set( 0 ‘DefaultTextFontSize‘ 12 ) % Plotting defaults
set( 0 ‘DefaultLineLineWidth‘ 1.5 )
set( 0 ‘DefaultAxesFontSize‘ 8 )
tfs = 13; lfs = 11;
load CD_run_params
disp ‘ ‘
disp ‘---------------------------------------------------------‘
fprintf(‘ UBC RRSG - Plot the azimuth spectrum of each data block‘)
disp ‘ ‘
disp ‘---------------------------------------------------------‘
Nrowsg = 3; % Number of subplots in row direction of the figure
Ncolsg = 3; % Number of subplots in column direction of the figure
Nspect = Nrowsg*Ncolsg; % Total number of spectra to calculate
Nrglpb = floor( Nrg_cells/Nspect ); % No. of range cells per spectra
wd = 0.81/Ncolsg; dx = wd + 0.045; x0 = 0.07;
ht = 0.39/Nrowsg; dy = 0.28; y0 = 1-dy;
for b = 1 : Nblocks
file_pre = strcat( output_path output_prefix ‘_‘ num2str(b) );
disp ‘ ‘
disp ([‘Load or Extract AGC setting and Data for block ‘ num2str(b) ])
% Load a block of ‘AGC_values‘
AGC_values = load_AGC_block( file_pre first_rg_line ...
Nrg_lines_blk b UseMATfiles );
% Load a block of raw SAR data
data = load_DATA_block( file_pre output_path Nrg_lines_blk ...
Nrg_cells AGC_values b UseMATfiles );
disp ‘Compute and plot azimuth power spectra‘
tic
figure(202) clf
freq = [0:Nrg_lines_blk-1]*PRF/Nrg_lines_blk;
b1 = first_rg_line + (b-1) * Nrg_lines_blk;
b2 = first_rg_line + b * Nrg_lines_blk - 1;
% Find azimuth power spectra and average
for krg = 1 : Nspect
r1 = 1 + (krg-1)*Nrglpb; r2 = r1 + Nrglpb - 1;
DATA = fft( data(:r1:r2) );
DATA_aver(krg:) = mean( abs(DATA.‘).^2 )/1000000;
ysc(krg) = 1.05*max(DATA_aver(krg:));
end % of for krg = 1 : Nspect
ysc0 = max( ysc ); % Common vertical scaling for all the spectra
% Plot the azimuth spectrum
for krg = 1 : Nspect
subplot(Nrowsg Ncolsg krg)
plot( freq DATA_aver(krg:) ) grid hold on
set( gca ‘Pos‘...
[x0+dx*mod((krg-1)Ncolsg) y0-dy*floor((
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 19968 2012-10-28 16:05 Cumming_Wong_Errata.doc
文件 879758 2012-10-28 16:06 Extracting_SAR_Data_from_the_CD.pdf
文件 19632 2005-01-21 11:24 CD_Programs\AGC_attenuation_values.mat
文件 5541 2005-01-26 10:31 CD_Programs\compute_azim_spectra.m
文件 4247 2004-12-30 19:00 CD_Programs\extract_AGC.m
文件 5245 2005-01-19 11:51 CD_Programs\extract_data.m
文件 2392 2005-01-21 11:57 CD_Programs\load_AGC_block.m
文件 3116 2004-12-30 18:12 CD_Programs\load_DATA_block.m
文件 7064 2005-01-21 12:56 CD_Programs\read_CEOS_raw.m
文件 5572 2012-10-28 16:53 CD_Programs\specify_parameters.asv
文件 5501 2012-10-28 17:05 CD_Programs\specify_parameters.m
目录 0 2012-10-28 16:38 CD_Programs
----------- --------- ---------- ----- ----
958036 12
相关资源
- netcdf的入门教程
-
VCPA-ba
sed hybrid strategy.zip -
VIA Telecom CBP5.5/5.6 CDMA ba
seband Proces - 2018-2019年CSCD.pdf该文档为中国科学引文
- 4×4矩阵键盘键值LCD1602显示汇编语言
- 16QAM星座图仿真及误码率仿真
- 适合卡尔曼滤波的初学者,仿真了匀
- 求信号的信息熵,完美运行,一看就
- 有限元一维编程
- 相机标定棋盘图
- 51单片机获取DS18B20序列号LCD显示
- 斯坦福兔.7z点云扫描文件 pcd格式
- 土狼优化算法
- D_star Lite.zip
- STC15+AHT10温湿度传感器+LCD12864.rar
- 马尔可夫链状态空间的分解实验报告
- 双向DCDC电源设计报告
- 计算方法A上机作业
- Mac10.14.cdr,亲测可用
- 相位屏仿真方法.rar
- 基于高斯混合模型的背景减除
- 基于co-training的手写数字识别Multiple
- 多普勒脉冲雷达回波仿真
- kpca lda mds降维 人脸数据
- 光伏在MPPT下的boost电路
- RPCdemo
- lcd12864的文字取模软件
- 基于单片机的温湿度1602显示
- 随机梯度下降算法
- 基于LCD12864的verilog代码
评论
共有 条评论