mirror of
https://github.com/hb9fxq/gr-digitalhf
synced 2024-11-05 05:55:53 +00:00
40 lines
697 B
C++
40 lines
697 B
C++
// -*- c++ -*-
|
|
|
|
#ifndef _LIB_LMS_HPP_
|
|
#define _LIB_LMS_HPP_
|
|
|
|
#include <vector>
|
|
|
|
#include "filter_update.hpp"
|
|
#include "volk_allocator.hpp"
|
|
|
|
|
|
namespace gr {
|
|
namespace digitalhf {
|
|
|
|
class lms : public filter_update {
|
|
public:
|
|
virtual ~lms();
|
|
|
|
static sptr make(float mu);
|
|
|
|
virtual void reset();
|
|
virtual gr_complex const* update(gr_complex const*, gr_complex const*);
|
|
virtual void set_parameters(std::map<std::string, float>const &);
|
|
|
|
protected:
|
|
void resize(size_t);
|
|
|
|
private:
|
|
lms(float mu);
|
|
|
|
typedef std::vector<gr_complex, volk_allocator<gr_complex> > vec_type;
|
|
float _mu;
|
|
vec_type _gain;
|
|
vec_type _tmp;
|
|
} ;
|
|
|
|
} // namespace digitalhf
|
|
} // namespace gr
|
|
#endif // _LIB_LMS_HPP_
|