|
using | StateDimVector = Eigen::Matrix< double, StateDim, 1 > |
| Type of state vector. More...
|
|
using | InputDimVector = Eigen::Matrix< double, InputDim, 1 > |
| Type of input vector. More...
|
|
using | OutputDimVector = Eigen::Matrix< double, OutputDim, 1 > |
| Type of output vector. More...
|
|
const int | state_dim_ = 0 |
| State dimension. More...
|
|
const int | input_dim_ = 0 |
| Input dimension. More...
|
|
const int | output_dim_ = 0 |
| Output dimension. More...
|
|
Eigen::Matrix< double, StateDim, StateDim > | A_ |
| Matrix \(\boldsymbol{A}\) of continuous state equation. More...
|
|
Eigen::Matrix< double, StateDim, InputDim > | B_ |
| Matrix \(\boldsymbol{B}\) of continuous state equation. More...
|
|
Eigen::Matrix< double, OutputDim, StateDim > | C_ |
| Matrix \(\boldsymbol{C}\) of observation equation. More...
|
|
Eigen::Matrix< double, OutputDim, InputDim > | D_ |
| Matrix \(\boldsymbol{D}\) of observation equation. More...
|
|
StateDimVector | E_ |
| Offset vector \(\boldsymbol{e}\) of continuous state equation. More...
|
|
OutputDimVector | F_ |
| Offset vector \(\boldsymbol{f}\) of observation equation. More...
|
|
double | dt_ = 0 |
| Discretization timestep [sec] (zero if discrete coefficients are not initialized) More...
|
|
Eigen::Matrix< double, StateDim, StateDim > | Ad_ |
| Matrix \(\boldsymbol{A}_d\) of discrete state equation. More...
|
|
Eigen::Matrix< double, StateDim, InputDim > | Bd_ |
| Matrix \(\boldsymbol{B}_d\) of discrete state equation. More...
|
|
StateDimVector | Ed_ |
| Offset vector \(\boldsymbol{e}_d\) of discrete state equation. More...
|
|
Discrete dynamics on step switching.
Definition at line 26 of file StepMpc.h.