gr-digitalhf/lib/kalman_exp.hpp

45 lines
866 B
C++
Raw Permalink Normal View History

2019-09-11 14:30:36 +00:00
// -*- c++ -*-
#ifndef _LIB_KALMAN_EXP_HPP_
#define _LIB_KALMAN_EXP_HPP_
#include <vector>
#include "filter_update.hpp"
2019-09-24 11:29:56 +00:00
#include "volk_alloc.h"
2019-09-11 14:30:36 +00:00
// see
// [1] https://open.library.ubc.ca/collections/ubctheses/831/items/1.0096286
namespace gr {
namespace digitalhf {
class kalman_exp : public filter_update {
public:
virtual ~kalman_exp();
static sptr make(float r, 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
kalman_exp(float r, float lambda);
2019-09-24 11:29:56 +00:00
typedef volk::vector<gr_complex> vec_type;
2019-09-11 14:30:36 +00:00
float _lambda;
float _r;
vec_type _gain;
vec_type _p;
vec_type _temp;
vec_type _t1;
} ;
} // namespace digitalhf
} // namespace gr
#endif // _LIB_KALMAN_EXP_HPP_