資源簡介
多路徑匹配追蹤深度優先(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
- 上一篇:辛方法計算輪軌力
- 下一篇:1對流方程各種格式代碼matlab.docx
評論
共有 條評論