Skip to content

sai-bi/OrthogonalMatchingPursuit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Orthogonal Matching Pursuit

Implementations of Orthogonal Matching Pursuit algorithm. See src/omp.m for details.

Demo:

dictionary = [1 0; 1/2 sqrt(3)/2; -1/sqrt(2) -1/sqrt(2)]';
x = [1 1/2]';
t = omp(x, dictionary, 2);
output_x = D * t; 

References

Matching Pursuit MP and OMP in MATLAB

About

A C++ implementation of orthogonal matching pursuit.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published