Lodestar
An integrated real-time control package in C++
FixedGain.hpp
1 //
2 // Created by Hamza El-Kebir on 4/21/21.
3 //
4 
5 #ifndef LODESTAR_FIXEDGAIN_HPP
6 #define LODESTAR_FIXEDGAIN_HPP
7 
8 #include <Eigen/Dense>
9 
10 namespace ls {
11  namespace control {
12  class FixedGain {
13  public:
14  FixedGain() : gain(new Eigen::MatrixXd)
15  {}
16 
17  Eigen::MatrixXd *gain;
18  };
19  }
20 }
21 
22 #endif //LODESTAR_FIXEDGAIN_HPP
ls::control::FixedGain
Definition: FixedGain.hpp:12
ls
Main Lodestar code.
Definition: BilinearTransformation.hpp:12