AutoDiffJacobian.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_AUTODIFF_JACOBIAN_H
11 #define EIGEN_AUTODIFF_JACOBIAN_H
12 
13 namespace Eigen
14 {
15 
16 template<typename Functor> class AutoDiffJacobian : public Functor
17 {
18 public:
21 
22  // forward constructors
23 #if EIGEN_HAS_VARIADIC_TEMPLATES
24  template<typename... T>
25  AutoDiffJacobian(const T& ...Values) : Functor(Values...) {}
26 #else
27  template<typename T0>
28  AutoDiffJacobian(const T0& a0) : Functor(a0) {}
29  template<typename T0, typename T1>
30  AutoDiffJacobian(const T0& a0, const T1& a1) : Functor(a0, a1) {}
31  template<typename T0, typename T1, typename T2>
32  AutoDiffJacobian(const T0& a0, const T1& a1, const T2& a2) : Functor(a0, a1, a2) {}
33 #endif
34 
35  typedef typename Functor::InputType InputType;
36  typedef typename Functor::ValueType ValueType;
37  typedef typename ValueType::Scalar Scalar;
38 
39  enum {
40  InputsAtCompileTime = InputType::RowsAtCompileTime,
41  ValuesAtCompileTime = ValueType::RowsAtCompileTime
42  };
43 
45  typedef typename JacobianType::Index Index;
46 
49 
52 
53 #if EIGEN_HAS_VARIADIC_TEMPLATES
54  // Some compilers don't accept variadic parameters after a default parameter,
55  // i.e., we can't just write _jac=0 but we need to overload operator():
57  void operator() (const InputType& x, ValueType* v) const
58  {
59  this->operator()(x, v, 0);
60  }
61  template<typename... ParamsType>
62  void operator() (const InputType& x, ValueType* v, JacobianType* _jac,
63  const ParamsType&... Params) const
64 #else
65  void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
66 #endif
67  {
68  eigen_assert(v!=0);
69 
70  if (!_jac)
71  {
72 #if EIGEN_HAS_VARIADIC_TEMPLATES
73  Functor::operator()(x, v, Params...);
74 #else
75  Functor::operator()(x, v);
76 #endif
77  return;
78  }
79 
80  JacobianType& jac = *_jac;
81 
82  ActiveInput ax = x.template cast<ActiveScalar>();
83  ActiveValue av(jac.rows());
84 
86  for (Index j=0; j<jac.rows(); j++)
87  av[j].derivatives().resize(x.rows());
88 
89  for (Index i=0; i<jac.cols(); i++)
90  ax[i].derivatives() = DerivativeType::Unit(x.rows(),i);
91 
92 #if EIGEN_HAS_VARIADIC_TEMPLATES
93  Functor::operator()(ax, &av, Params...);
94 #else
95  Functor::operator()(ax, &av);
96 #endif
97 
98  for (Index i=0; i<jac.rows(); i++)
99  {
100  (*v)[i] = av[i].value();
101  jac.row(i) = av[i].derivatives();
102  }
103  }
104 };
105 
106 }
107 
108 #endif // EIGEN_AUTODIFF_JACOBIAN_H
Point2 a1
Definition: testPose2.cpp:769
AutoDiffJacobian(const T0 &a0)
SCALAR Scalar
Definition: bench_gemm.cpp:46
#define EIGEN_STRONG_INLINE
Definition: Macros.h:917
void operator()(const InputType &x, ValueType *v, JacobianType *_jac=0) const
JacobianType::Index Index
Matrix< ActiveScalar, ValuesAtCompileTime, 1 > ActiveValue
A scalar type replacement with automatic differentiation capability.
AutoDiffJacobian(const Functor &f)
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
static const Pose3 T2(Rot3::Rodrigues(0.3, 0.2, 0.1), P2)
ValueType::Scalar Scalar
Matrix< Scalar, InputsAtCompileTime, 1 > DerivativeType
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
Matrix< Scalar, InputsAtCompileTime, 1 > InputType
AutoDiffScalar< DerivativeType > ActiveScalar
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void resize(Index rows, Index cols)
Matrix< Scalar, ValuesAtCompileTime, 1 > ValueType
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74
Matrix< ActiveScalar, InputsAtCompileTime, 1 > ActiveInput
#define eigen_assert(x)
Definition: Macros.h:1037
Array< int, Dynamic, 1 > v
Functor::InputType InputType
Point2(* f)(const Point3 &, OptionalJacobian< 2, 3 >)
Point2 a2
Definition: testPose2.cpp:770
AutoDiffJacobian(const T0 &a0, const T1 &a1, const T2 &a2)
Functor::ValueType ValueType
static const Similarity3 T1(R, Point3(3.5, -8.2, 4.2), 1)
AutoDiffJacobian(const T0 &a0, const T1 &a1)
const int Dynamic
Definition: Constants.h:22
static std::shared_ptr< PreintegratedCombinedMeasurements::Params > Params(const Matrix3 &biasAccCovariance=Matrix3::Zero(), const Matrix3 &biasOmegaCovariance=Matrix3::Zero(), const Matrix6 &biasAccOmegaInt=Matrix6::Zero())
The matrix class, also used for vectors and row-vectors.
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
internal::enable_if< internal::valid_indexed_view_overload< RowIndices, ColIndices >::value &&internal::traits< typename EIGEN_INDEXED_VIEW_METHOD_TYPE< RowIndices, ColIndices >::type >::ReturnAsIndexedView, typename EIGEN_INDEXED_VIEW_METHOD_TYPE< RowIndices, ColIndices >::type >::type operator()(const RowIndices &rowIndices, const ColIndices &colIndices) EIGEN_INDEXED_VIEW_METHOD_CONST
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Matrix< Scalar, ValuesAtCompileTime, InputsAtCompileTime > JacobianType
std::ptrdiff_t j


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:33:56