资源简介
一篇非常优秀的论文:合成孔径雷达成像matlab仿真,附PDF和源码。
代码片段和文件信息
% Takes matB (MC x nc?MC) matrix wi th nc different
% values of c to f i nd a column set colset of length MC. This method
% depend on the rhs column vector. Solve matB?ans = rhs
function [ colset ans ] = greedyAlgorithm (matB rhs )
[MCNC] = size (matB) ;
mrhs = length ( rhs ) ;
m = MC-1;
n = NC-1;
mat = zeros (MCNC) ;
rhsB = zeros (MC 1 ) ;
rhsB = rhs ;
mat = matB;
[mv imv ] = max(abs ( rhs ) ) ; % get maximum resudual
[nv inv ] = max(abs (mat ( imv : ) ) ) ; % maximum in corresponding rowmat
coef= zeros (NC 1 ) ;
ainv = pinv(mat ( imv inv ) ) ; % psuedo inverse
coef( inv 1 ) = rhs ( imv 1 ) * ainv ;
mcoef = length ( coef ) ;
mimv = length ( imv ) ;
ninv = length ( inv ) ;
colset = [ inv ] ; % this will be the selected column set
rowset =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1657 2020-07-27 12:06 SyntheticApertureRadarImaging\greedyAlgorithm.m
文件 740 2020-07-27 12:06 SyntheticApertureRadarImaging\ifty.m
文件 4574 2020-07-27 12:06 SyntheticApertureRadarImaging\Simulation2D.m
文件 4493 2020-07-27 12:06 SyntheticApertureRadarImaging\Simulation3D.m
文件 5321 2020-07-27 12:06 SyntheticApertureRadarImaging\SimulationCube.m
文件 3181219 2020-07-27 12:06 SyntheticApertureRadarImaging\Synthetic Aperture Radar Imaging Simulated in MATLAB.pdf
相关资源
- Radarsat2 将Radarsat2极化SAR图像数据转换
- GMM 做毕设是用到的gmm的matlab程序
- ISAR-Imaging-With-MATLAB-Algorithms 这本书提
- FMCW-radar-ranging
- stblpdf
- BFSPDFS 广度优先搜索和深度优先搜索在
- program 合成孔径雷达成像的三个经典算
- BP SAR成像BP算法
- The-Micro-Doppler-Effect-in-Radar
- FMCW-radar 小型车载雷达的原理仿真。使
- stateflow matlab stateflow 入门教程
- 合成孔径雷达成像 算法与实现.rar
- DOA_CRB_MUSIC 单基地MIMO雷达的DOA估计
- ofdm_radar 基于OFDM体制的雷达系统的m
- RS-and-NRS_-matlab-code-and-pdf 鉴于本人去年
- radar_matlab 雷达信号处理M
- radar_matlabcode 雷达系统仿真
- MATLAB图像处理详解.pdf 文字高清版
- MATLAB编程
- 雷达matlab仿真
- 负指数分布、K分布、Gamma-Gamma分布模
- 直接序列扩频通信系统与MATLAB仿真.
- 利用MATLAB仿真DTMF音频的产生及其解码
- 画大量样本的概率密度曲线的matlaB程
- 掌握和精通matlab之gui设计.pdf
- matlab图象处理函数 pdf
评论
共有 条评论