itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
sim_fir_up_x.hpp
1 
6 #ifndef SIM_FIR_UP_X_HPP
7 #define SIM_FIR_UP_X_HPP
8 
9 #include "sim\sim_fir_x.hpp"
10 
11 using namespace itpp;
12 using namespace std;
13 
14 namespace SIM
15 {
16 
24 class fir_up_x : public SIM::fir_x
25 {
26 public:
27 
29  {
30  };
31 
33  {
34  };
35 
36  cvec process(const bmat &ce, const cvec &x);
37 };
38 
39 } // namespace SIM
40 #endif //SIM_FIR_HPP
41 
complex up-sampling FIR filter Core function SIM::fir_up_x.process()
Definition: sim_fir_up_x.hpp:24
~fir_up_x()
Definition: sim_fir_up_x.hpp:32
SIM layer implements low level simulation models with itpp base classes as operational types...
Definition: sim_amp.hpp:15
fir_up_x()
Definition: sim_fir_up_x.hpp:28
Definition: _sci_assert.cpp:35
complex FIR filter Core function: SIM::fir_x.process()
Definition: sim_fir_x.hpp:36