// -*- c++ -*- #ifndef _LIB_LMS_HPP_ #define _LIB_LMS_HPP_ #include #include "filter_update.hpp" #include "volk/volk_alloc.h" 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::mapconst &); protected: void resize(size_t); private: lms(float mu); typedef volk::vector vec_type; float _mu; vec_type _gain; vec_type _tmp; } ; } // namespace digitalhf } // namespace gr #endif // _LIB_LMS_HPP_