gr-digitalhf/lib/rls.hpp

43 lines
758 B
C++
Raw Normal View History

// -*- c++ -*-
#ifndef _LIB_RLS_HPP_
#define _LIB_RLS_HPP_
#include <vector>
#include "filter_update.hpp"
2019-09-24 11:29:56 +00:00
#include "volk_alloc.h"
namespace gr {
namespace digitalhf {
class rls : public filter_update {
public:
virtual ~rls();
static sptr make(float delta, float lambda);
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:
2019-09-14 15:02:30 +00:00
rls(float delta, float lambda);
2019-09-24 11:29:56 +00:00
typedef volk::vector<gr_complex> vec_type;
float _delta;
float _lambda;
vec_type _gain;
vec_type _inv_corr;
vec_type _pu;
vec_type _tmp;
} ;
} // namespace digitalhf
} // namespace gr
#endif // _LIB_RLS_HPP_