资源简介

多路径匹配追踪深度优先(MMP-DF),包含深度优先程序代码,方便理解该算法的原子搜索方式

资源截图

代码片段和文件信息

%⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙
% Estimate the sparse signal x using MMP-DF
%
% y : observation
% Phi : Sensing matrix
% K : Sparsity
% L : Selection length
% stop_threshold: Selection length
% max_itr : Selection length
%
% Output parameters
% x_mmp_est : estimated signal
% x_supp : selected support vector indice.
% candiate_idx : iteration count during estimating
%
% Written by Suhyuk (Seokbeop) Kwon
% Information System Lab. Korea Univ.
%⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙⒙


function [x_mmp_est x_supp candiate_idx] = islsp_EstMMP_BF_reuse(y Phi K L stop_threshold max_itr)


[nRows nCols] = size(Phi);

x_mmp_est = zeros(nCols 1);

node_header ={ ‘supps‘...
‘x_h‘...
‘residu‘...
‘prev_inv

评论

共有 条评论