itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
sim_fir_up.hpp
1 /*xxx
2 * \brief SIM::fir_up - FIR up-sampling filter
3 * \author maki
4 */
5 
6 
7 #ifndef SIM_FIR_UP_HPP
8 #define SIM_FIR_UP_HPP
9 
10 #include "sim\sim_fir.hpp"
11 
12 using namespace itpp;
13 using namespace std;
14 
15 namespace SIM
16 {
17 
25 class fir_up : public SIM::fir
26 {
27 public:
28 
30  {
31  };
33  {
34  };
35 
36  vec process(const bmat &ceio, const vec &x);
37 };
38 
39 } // namespace SIM
40 #endif //SIM_FIR_UP_HPP
41 
~fir_up()
Definition: sim_fir_up.hpp:32
FIR filter Core function: SIM::fir.process() .
Definition: sim_fir.hpp:28
SIM layer implements low level simulation models with itpp base classes as operational types...
Definition: sim_amp.hpp:15
up-sampling FIR filter Core function SIM::fir_up.process()
Definition: sim_fir_up.hpp:25
Definition: _sci_assert.cpp:35
fir_up()
Definition: sim_fir_up.hpp:29