11#ifndef EIGEN_INVERSE_IMPL_H
12#define EIGEN_INVERSE_IMPL_H
22template<
typename MatrixType,
typename ResultType,
int Size = MatrixType::RowsAtCompileTime>
26 static inline void run(
const MatrixType& matrix, ResultType&
result)
28 result = matrix.partialPivLu().inverse();
32template<
typename MatrixType,
typename ResultType,
int Size = MatrixType::RowsAtCompileTime>
39template<
typename MatrixType,
typename ResultType>
43 static inline void run(
const MatrixType& matrix, ResultType&
result)
45 typedef typename MatrixType::Scalar Scalar;
47 result.coeffRef(0,0) = Scalar(1) / matrixEval.coeff(0,0);
51template<
typename MatrixType,
typename ResultType>
55 static inline void run(
56 const MatrixType& matrix,
57 const typename MatrixType::RealScalar& absDeterminantThreshold,
59 typename ResultType::Scalar& determinant,
64 determinant = matrix.coeff(0,0);
65 invertible =
abs(determinant) > absDeterminantThreshold;
66 if(invertible)
result.coeffRef(0,0) =
typename ResultType::Scalar(1) / determinant;
74template<
typename MatrixType,
typename ResultType>
77 const MatrixType& matrix,
const typename ResultType::Scalar& invdet,
80 typename ResultType::Scalar temp = matrix.coeff(0,0);
81 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
82 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
83 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet;
84 result.coeffRef(1,1) = temp * invdet;
87template<
typename MatrixType,
typename ResultType>
91 static inline void run(
const MatrixType& matrix, ResultType&
result)
93 typedef typename ResultType::Scalar Scalar;
94 const Scalar invdet =
typename MatrixType::Scalar(1) / matrix.determinant();
99template<
typename MatrixType,
typename ResultType>
104 const MatrixType& matrix,
105 const typename MatrixType::RealScalar& absDeterminantThreshold,
107 typename ResultType::Scalar& determinant,
112 typedef typename ResultType::Scalar Scalar;
113 determinant = matrix.determinant();
114 invertible =
abs(determinant) > absDeterminantThreshold;
115 if(!invertible)
return;
116 const Scalar invdet = Scalar(1) / determinant;
125template<
typename MatrixType,
int i,
int j>
135 return m.coeff(i1, j1) * m.coeff(i2, j2)
136 - m.coeff(i1, j2) * m.coeff(i2, j1);
139template<
typename MatrixType,
typename ResultType>
142 const MatrixType& matrix,
143 const typename ResultType::Scalar& invdet,
148 typedef typename ResultType::Scalar Scalar;
149 const Scalar c01 = cofactor_3x3<MatrixType,0,1>(matrix) * invdet;
150 const Scalar c11 = cofactor_3x3<MatrixType,1,1>(matrix) * invdet;
151 const Scalar c02 = cofactor_3x3<MatrixType,0,2>(matrix) * invdet;
152 result.coeffRef(1,2) = cofactor_3x3<MatrixType,2,1>(matrix) * invdet;
153 result.coeffRef(2,1) = cofactor_3x3<MatrixType,1,2>(matrix) * invdet;
154 result.coeffRef(2,2) = cofactor_3x3<MatrixType,2,2>(matrix) * invdet;
155 result.coeffRef(1,0) = c01;
156 result.coeffRef(1,1) = c11;
157 result.coeffRef(2,0) = c02;
158 result.row(0) = cofactors_col0 * invdet;
161template<
typename MatrixType,
typename ResultType>
165 static inline void run(
const MatrixType& matrix, ResultType&
result)
167 typedef typename ResultType::Scalar Scalar;
169 cofactors_col0.
coeffRef(0) = cofactor_3x3<MatrixType,0,0>(matrix);
170 cofactors_col0.
coeffRef(1) = cofactor_3x3<MatrixType,1,0>(matrix);
171 cofactors_col0.
coeffRef(2) = cofactor_3x3<MatrixType,2,0>(matrix);
172 const Scalar det = (cofactors_col0.cwiseProduct(matrix.col(0))).sum();
173 const Scalar invdet = Scalar(1) / det;
178template<
typename MatrixType,
typename ResultType>
183 const MatrixType& matrix,
184 const typename MatrixType::RealScalar& absDeterminantThreshold,
186 typename ResultType::Scalar& determinant,
190 typedef typename ResultType::Scalar Scalar;
192 cofactors_col0.
coeffRef(0) = cofactor_3x3<MatrixType,0,0>(matrix);
193 cofactors_col0.
coeffRef(1) = cofactor_3x3<MatrixType,1,0>(matrix);
194 cofactors_col0.
coeffRef(2) = cofactor_3x3<MatrixType,2,0>(matrix);
195 determinant = (cofactors_col0.cwiseProduct(matrix.col(0))).sum();
197 if(!invertible)
return;
198 const Scalar invdet = Scalar(1) / determinant;
207template<
typename Derived>
212 return matrix.coeff(i1,j1)
213 * (matrix.coeff(i2,j2) * matrix.coeff(i3,j3) - matrix.coeff(i2,j3) * matrix.coeff(i3,j2));
216template<
typename MatrixType,
int i,
int j>
218inline typename MatrixType::Scalar
cofactor_4x4(
const MatrixType& matrix)
233template<
int Arch,
typename Scalar,
typename MatrixType,
typename ResultType>
237 static void run(
const MatrixType& matrix, ResultType&
result)
239 result.coeffRef(0,0) = cofactor_4x4<MatrixType,0,0>(matrix);
240 result.coeffRef(1,0) = -cofactor_4x4<MatrixType,0,1>(matrix);
241 result.coeffRef(2,0) = cofactor_4x4<MatrixType,0,2>(matrix);
242 result.coeffRef(3,0) = -cofactor_4x4<MatrixType,0,3>(matrix);
243 result.coeffRef(0,2) = cofactor_4x4<MatrixType,2,0>(matrix);
244 result.coeffRef(1,2) = -cofactor_4x4<MatrixType,2,1>(matrix);
245 result.coeffRef(2,2) = cofactor_4x4<MatrixType,2,2>(matrix);
246 result.coeffRef(3,2) = -cofactor_4x4<MatrixType,2,3>(matrix);
247 result.coeffRef(0,1) = -cofactor_4x4<MatrixType,1,0>(matrix);
248 result.coeffRef(1,1) = cofactor_4x4<MatrixType,1,1>(matrix);
249 result.coeffRef(2,1) = -cofactor_4x4<MatrixType,1,2>(matrix);
250 result.coeffRef(3,1) = cofactor_4x4<MatrixType,1,3>(matrix);
251 result.coeffRef(0,3) = -cofactor_4x4<MatrixType,3,0>(matrix);
252 result.coeffRef(1,3) = cofactor_4x4<MatrixType,3,1>(matrix);
253 result.coeffRef(2,3) = -cofactor_4x4<MatrixType,3,2>(matrix);
254 result.coeffRef(3,3) = cofactor_4x4<MatrixType,3,3>(matrix);
255 result /= (matrix.col(0).cwiseProduct(
result.row(0).transpose())).sum();
259template<
typename MatrixType,
typename ResultType>
262 MatrixType, ResultType>
266template<
typename MatrixType,
typename ResultType>
271 const MatrixType& matrix,
272 const typename MatrixType::RealScalar& absDeterminantThreshold,
274 typename ResultType::Scalar& determinant,
279 determinant = matrix.determinant();
280 invertible =
abs(determinant) > absDeterminantThreshold;
284 else if(invertible) {
285 MatrixType matrix_t = matrix;
300template<
typename DstXprType,
typename XprType>
309 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
310 dst.resize(dstRows, dstCols);
312 const int Size =
EIGEN_PLAIN_ENUM_MIN(XprType::ColsAtCompileTime,DstXprType::ColsAtCompileTime);
315 &&
"Aliasing problem detected in inverse(), you need to do inverse().eval() here.");
346template<
typename Derived>
375template<
typename Derived>
376template<
typename ResultType>
379 typename ResultType::Scalar& determinant,
389 RowsAtCompileTime == 2,
394 (derived(), absDeterminantThreshold,
inverse, determinant, invertible);
416template<
typename Derived>
417template<
typename ResultType>
427 computeInverseAndDetWithCheck(
inverse,determinant,invertible,absDeterminantThreshold);
EIGEN_DEVICE_FUNC const InverseReturnType inverse() const
Definition: ArrayCwiseUnaryOps.h:411
#define EIGEN_PLAIN_ENUM_MIN(a, b)
Definition: Macros.h:1298
#define EIGEN_DEVICE_FUNC
Definition: Macros.h:986
#define EIGEN_ONLY_USED_FOR_DEBUG(x)
Definition: Macros.h:1059
#define eigen_assert(x)
Definition: Macros.h:1047
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:127
Expression of the inverse of another expression.
Definition: Inverse.h:44
EIGEN_DEVICE_FUNC const XprTypeNestedCleaned & nestedExpression() const
Definition: Inverse.h:60
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Definition: Inverse.h:58
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
Definition: Inverse.h:57
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:50
void computeInverseWithCheck(ResultType &inverse, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const
\lu_module
Definition: InverseImpl.h:418
NumTraits< Scalar >::Real RealScalar
Definition: MatrixBase.h:58
void computeInverseAndDetWithCheck(ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const
\lu_module
Definition: InverseImpl.h:377
internal::traits< Derived >::Scalar Scalar
Definition: MatrixBase.h:56
EIGEN_DEVICE_FUNC const Inverse< Derived > inverse() const
\lu_module
Definition: InverseImpl.h:348
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:180
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index rowId, Index colId)
This is an overloaded version of DenseCoeffsBase<Derived,WriteAccessors>::coeffRef(Index,...
Definition: PlainObjectBase.h:175
type
Definition: core.h:575
UnitType abs(const UnitType x) noexcept
Compute absolute value.
Definition: math.h:721
EIGEN_DEVICE_FUNC void compute_inverse_size2_helper(const MatrixType &matrix, const typename ResultType::Scalar &invdet, ResultType &result)
Definition: InverseImpl.h:76
EIGEN_DEVICE_FUNC const Derived::Scalar general_det3_helper(const MatrixBase< Derived > &matrix, int i1, int i2, int i3, int j1, int j2, int j3)
Definition: InverseImpl.h:210
EIGEN_DEVICE_FUNC MatrixType::Scalar cofactor_4x4(const MatrixType &matrix)
Definition: InverseImpl.h:218
EIGEN_DEVICE_FUNC MatrixType::Scalar cofactor_3x3(const MatrixType &m)
Definition: InverseImpl.h:127
EIGEN_DEVICE_FUNC void compute_inverse_size3_helper(const MatrixType &matrix, const typename ResultType::Scalar &invdet, const Matrix< typename ResultType::Scalar, 3, 1 > &cofactors_col0, ResultType &result)
Definition: InverseImpl.h:141
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE const T::Scalar * extract_data(const T &m)
Definition: BlasUtil.h:533
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE internal::enable_if< NumTraits< T >::IsSigned||NumTraits< T >::IsComplex, typenameNumTraits< T >::Real >::type abs(const T &x)
Definition: MathFunctions.h:1509
Namespace containing all symbols from the Eigen library.
Definition: Core:141
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74
result
Definition: format.h:2564
Definition: Eigen_Colamd.h:50
Holds information about the various numeric (i.e.
Definition: NumTraits.h:233
Inverse< XprType > SrcXprType
Definition: InverseImpl.h:303
static EIGEN_DEVICE_FUNC void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename XprType::Scalar > &)
Definition: InverseImpl.h:305
Definition: AssignEvaluator.h:824
Definition: AssignEvaluator.h:814
Definition: AssignmentFunctors.h:21
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, ResultType &result)
Definition: InverseImpl.h:43
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, ResultType &result)
Definition: InverseImpl.h:91
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, ResultType &result)
Definition: InverseImpl.h:165
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, const typename MatrixType::RealScalar &absDeterminantThreshold, ResultType &result, typename ResultType::Scalar &determinant, bool &invertible)
Definition: InverseImpl.h:55
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, const typename MatrixType::RealScalar &absDeterminantThreshold, ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible)
Definition: InverseImpl.h:103
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, const typename MatrixType::RealScalar &absDeterminantThreshold, ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible)
Definition: InverseImpl.h:182
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, const typename MatrixType::RealScalar &absDeterminantThreshold, ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible)
Definition: InverseImpl.h:270
Definition: InverseImpl.h:33
Definition: InverseImpl.h:235
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, ResultType &result)
Definition: InverseImpl.h:237
Definition: InverseImpl.h:24
static EIGEN_DEVICE_FUNC void run(const MatrixType &matrix, ResultType &result)
Definition: InverseImpl.h:26
T type
Definition: Meta.h:126