Go to the source code of this file.
|
template<int Rows, int Cols, typename F > |
auto | frc::NumericalJacobian (F &&f, const Vectord< Cols > &x) |
| Returns numerical Jacobian with respect to x for f(x). More...
|
|
template<int Rows, int States, int Inputs, typename F , typename... Args> |
auto | frc::NumericalJacobianX (F &&f, const Vectord< States > &x, const Vectord< Inputs > &u, Args &&... args) |
| Returns numerical Jacobian with respect to x for f(x, u, ...). More...
|
|
template<int Rows, int States, int Inputs, typename F , typename... Args> |
auto | frc::NumericalJacobianU (F &&f, const Vectord< States > &x, const Vectord< Inputs > &u, Args &&... args) |
| Returns numerical Jacobian with respect to u for f(x, u, ...). More...
|
|