fun_ofdm  1.0
802.11a Physical Layer for USRP
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
channel_est.h
Go to the documentation of this file.
1 
9 #ifndef channel_est_H
10 #define channel_est_H
11 
12 #include <vector>
13 #include <complex>
14 
15 #include "tagged_vector.h"
16 #include "block.h"
17 
18 namespace fun
19 {
20 
32  class channel_est : public fun::block<tagged_vector<64>, tagged_vector<64> >
33  {
34  public:
35 
36 
37  channel_est();
38 
39  virtual void work();
40 
41  private:
42 
43 
44  std::vector<std::complex<double> > m_chan_est;
45 
55 
61  };
62 }
63 
64 
65 
66 #endif // channel_est_H