#include <Matrix.h>
Public Types | |
enum | { M = traits<T>::dimension } |
typedef Eigen::Matrix< double, N, N > | MatrixN |
typedef std::function< VectorN(const T &, const VectorN &, OptionalJacobian< N, M >, OptionalJacobian< N, N >)> | Operator |
typedef Eigen::Matrix< double, N, 1 > | VectorN |
Public Member Functions | |
MultiplyWithInverseFunction (const Operator &phi) | |
Construct with function as explained above. More... | |
VectorN | operator() (const T &a, const VectorN &b, OptionalJacobian< N, M > H1={}, OptionalJacobian< N, N > H2={}) const |
f(a).inverse() * b, with optional derivatives More... | |
Private Attributes | |
const Operator | phi_ |
Functor that implements multiplication with the inverse of a matrix, itself the result of a function f. It turn out we only need the derivatives of the operator phi(a): b -> f(a) * b
Definition at line 481 of file base/Matrix.h.
typedef Eigen::Matrix<double, N, N> gtsam::MultiplyWithInverseFunction< T, N >::MatrixN |
Definition at line 484 of file base/Matrix.h.
typedef std::function<VectorN( const T&, const VectorN&, OptionalJacobian<N, M>, OptionalJacobian<N, N>)> gtsam::MultiplyWithInverseFunction< T, N >::Operator |
Definition at line 490 of file base/Matrix.h.
typedef Eigen::Matrix<double, N, 1> gtsam::MultiplyWithInverseFunction< T, N >::VectorN |
Definition at line 483 of file base/Matrix.h.
anonymous enum |
Enumerator | |
---|---|
M |
Definition at line 482 of file base/Matrix.h.
|
inline |
Construct with function as explained above.
Definition at line 493 of file base/Matrix.h.
|
inline |
f(a).inverse() * b, with optional derivatives
Definition at line 496 of file base/Matrix.h.
|
private |
Definition at line 514 of file base/Matrix.h.