资源简介

匹配追踪算法OMP的 matlab代码,实验中常用到的子程序。很好用的哦

资源截图

代码片段和文件信息

function [A]=OMP(DXL); 
%=============================================
% Sparse coding of a group of signals based on a given 
% dictionary and specified number of atoms to use. 
% input arguments: 
%       D - the dictionary (its columns MUST be normalized).
%       X - the signals to represent
%       L - the max. number of coefficients for each signal.
% output arguments: 
%       A - sparse coefficient matrix.
%=============================================
[nP]=size(X);
[

评论

共有 条评论