59 template<
typename _MatrixType>
class FullPivLU 63 typedef _MatrixType MatrixType;
69 MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
70 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime
76 typedef typename MatrixType::PlainObject PlainObject;
99 template<
typename InputType>
108 template<
typename InputType>
118 template<
typename InputType>
133 eigen_assert(m_isInitialized &&
"LU is not initialized.");
146 eigen_assert(m_isInitialized &&
"LU is not initialized.");
147 return m_nonzero_pivots;
161 eigen_assert(m_isInitialized &&
"LU is not initialized.");
171 eigen_assert(m_isInitialized &&
"LU is not initialized.");
191 eigen_assert(m_isInitialized &&
"LU is not initialized.");
215 image(
const MatrixType& originalMatrix)
const 217 eigen_assert(m_isInitialized &&
"LU is not initialized.");
241 template<
typename Rhs>
245 eigen_assert(m_isInitialized &&
"LU is not initialized.");
254 eigen_assert(m_isInitialized &&
"PartialPivLU is not initialized.");
294 m_usePrescribedThreshold =
true;
295 m_prescribedThreshold = threshold;
309 m_usePrescribedThreshold =
false;
319 eigen_assert(m_isInitialized || m_usePrescribedThreshold);
320 return m_usePrescribedThreshold ? m_prescribedThreshold
335 eigen_assert(m_isInitialized &&
"LU is not initialized.");
336 RealScalar premultiplied_threshold = abs(m_maxpivot) * threshold();
338 for(
Index i = 0; i < m_nonzero_pivots; ++i)
339 result += (abs(m_lu.coeff(i,i)) > premultiplied_threshold);
351 eigen_assert(m_isInitialized &&
"LU is not initialized.");
352 return cols() - rank();
364 eigen_assert(m_isInitialized &&
"LU is not initialized.");
365 return rank() == cols();
377 eigen_assert(m_isInitialized &&
"LU is not initialized.");
378 return rank() == rows();
389 eigen_assert(m_isInitialized &&
"LU is not initialized.");
390 return isInjective() && (m_lu.rows() == m_lu.cols());
402 eigen_assert(m_isInitialized &&
"LU is not initialized.");
403 eigen_assert(m_lu.rows() == m_lu.cols() &&
"You can't take the inverse of a non-square matrix!");
407 MatrixType reconstructedMatrix()
const;
409 EIGEN_DEVICE_FUNC
inline Index rows()
const {
return m_lu.rows(); }
410 EIGEN_DEVICE_FUNC
inline Index cols()
const {
return m_lu.cols(); }
412 #ifndef EIGEN_PARSED_BY_DOXYGEN 413 template<
typename RhsType,
typename DstType>
415 void _solve_impl(
const RhsType &rhs, DstType &dst)
const;
417 template<
bool Conjugate,
typename RhsType,
typename DstType>
419 void _solve_impl_transposed(
const RhsType &rhs, DstType &dst)
const;
424 static void check_template_parameters()
426 EIGEN_STATIC_ASSERT_NON_INTEGER(Scalar);
429 void computeInPlace();
432 PermutationPType m_p;
433 PermutationQType m_q;
434 IntColVectorType m_rowsTranspositions;
435 IntRowVectorType m_colsTranspositions;
436 Index m_nonzero_pivots;
437 RealScalar m_l1_norm;
438 RealScalar m_maxpivot, m_prescribedThreshold;
439 signed char m_det_pq;
440 bool m_isInitialized, m_usePrescribedThreshold;
443 template<
typename MatrixType>
445 : m_isInitialized(false), m_usePrescribedThreshold(false)
449 template<
typename MatrixType>
454 m_rowsTranspositions(rows),
455 m_colsTranspositions(cols),
456 m_isInitialized(false),
457 m_usePrescribedThreshold(false)
461 template<
typename MatrixType>
462 template<
typename InputType>
464 : m_lu(matrix.rows(), matrix.cols()),
467 m_rowsTranspositions(matrix.rows()),
468 m_colsTranspositions(matrix.cols()),
469 m_isInitialized(false),
470 m_usePrescribedThreshold(false)
475 template<
typename MatrixType>
476 template<
typename InputType>
481 m_rowsTranspositions(matrix.rows()),
482 m_colsTranspositions(matrix.cols()),
483 m_isInitialized(false),
484 m_usePrescribedThreshold(false)
489 template<
typename MatrixType>
492 check_template_parameters();
497 m_l1_norm = m_lu.cwiseAbs().colwise().sum().maxCoeff();
500 const Index rows = m_lu.rows();
501 const Index cols = m_lu.cols();
505 m_rowsTranspositions.resize(m_lu.rows());
506 m_colsTranspositions.resize(m_lu.cols());
507 Index number_of_transpositions = 0;
509 m_nonzero_pivots =
size;
510 m_maxpivot = RealScalar(0);
517 Index row_of_biggest_in_corner, col_of_biggest_in_corner;
519 typedef typename Scoring::result_type Score;
520 Score biggest_in_corner;
521 biggest_in_corner = m_lu.bottomRightCorner(rows-k, cols-k)
522 .unaryExpr(Scoring())
523 .maxCoeff(&row_of_biggest_in_corner, &col_of_biggest_in_corner);
524 row_of_biggest_in_corner += k;
525 col_of_biggest_in_corner += k;
527 if(biggest_in_corner==Score(0))
531 m_nonzero_pivots = k;
534 m_rowsTranspositions.coeffRef(i) = i;
535 m_colsTranspositions.coeffRef(i) = i;
541 if(abs_pivot > m_maxpivot) m_maxpivot = abs_pivot;
546 m_rowsTranspositions.coeffRef(k) = row_of_biggest_in_corner;
547 m_colsTranspositions.coeffRef(k) = col_of_biggest_in_corner;
548 if(k != row_of_biggest_in_corner) {
549 m_lu.row(k).swap(m_lu.row(row_of_biggest_in_corner));
550 ++number_of_transpositions;
552 if(k != col_of_biggest_in_corner) {
553 m_lu.col(k).swap(m_lu.col(col_of_biggest_in_corner));
554 ++number_of_transpositions;
561 m_lu.col(k).tail(rows-k-1) /= m_lu.coeff(k,k);
563 m_lu.block(k+1,k+1,rows-k-1,cols-k-1).noalias() -= m_lu.col(k).tail(rows-k-1) * m_lu.row(k).tail(cols-k-1);
570 for(
Index k = size-1; k >= 0; --k)
577 m_det_pq = (number_of_transpositions%2) ? -1 : 1;
579 m_isInitialized =
true;
582 template<
typename MatrixType>
585 eigen_assert(m_isInitialized &&
"LU is not initialized.");
586 eigen_assert(m_lu.rows() == m_lu.cols() &&
"You can't take the determinant of a non-square matrix!");
587 return Scalar(m_det_pq) * Scalar(m_lu.diagonal().prod());
593 template<
typename MatrixType>
596 eigen_assert(m_isInitialized &&
"LU is not initialized.");
597 const Index smalldim = (std::min)(m_lu.rows(), m_lu.cols());
599 MatrixType res(m_lu.rows(),m_lu.cols());
601 res = m_lu.leftCols(smalldim)
602 .template triangularView<UnitLower>().toDenseMatrix()
603 * m_lu.topRows(smalldim)
604 .template triangularView<Upper>().toDenseMatrix();
618 template<
typename _MatrixType>
624 enum { MaxSmallDimAtCompileTime = EIGEN_SIZE_MIN_PREFER_FIXED(
625 MatrixType::MaxColsAtCompileTime,
626 MatrixType::MaxRowsAtCompileTime)
629 template<
typename Dest>
void evalTo(Dest& dst)
const 632 const Index cols = dec().matrixLU().cols(), dimker = cols -
rank();
659 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
661 for(
Index i = 0; i < dec().nonzeroPivots(); ++i)
662 if(abs(dec().
matrixLU().coeff(i,i)) > premultiplied_threshold)
664 eigen_internal_assert(p ==
rank());
671 MaxSmallDimAtCompileTime, MatrixType::MaxColsAtCompileTime>
675 if(i) m.row(i).head(i).setZero();
676 m.row(i).tail(cols-i) = dec().matrixLU().row(pivots.
coeff(i)).tail(cols-i);
679 m.block(0, 0,
rank(),
rank()).template triangularView<StrictlyLower>().setZero();
681 m.col(i).swap(m.col(pivots.
coeff(i)));
687 .template triangularView<Upper>().solveInPlace(
688 m.topRightCorner(rank(), dimker)
693 m.col(i).swap(m.col(pivots.
coeff(i)));
696 for(
Index i = 0; i <
rank(); ++i) dst.row(dec().
permutationQ().indices().coeff(i)) = -m.row(i).tail(dimker);
698 for(
Index k = 0; k < dimker; ++k) dst.coeffRef(dec().
permutationQ().indices().coeff(
rank()+k), k) = Scalar(1);
704 template<
typename _MatrixType>
710 enum { MaxSmallDimAtCompileTime = EIGEN_SIZE_MIN_PREFER_FIXED(
711 MatrixType::MaxColsAtCompileTime,
712 MatrixType::MaxRowsAtCompileTime)
715 template<
typename Dest>
void evalTo(Dest& dst)
const 728 RealScalar premultiplied_threshold = dec().maxPivot() * dec().threshold();
730 for(
Index i = 0; i < dec().nonzeroPivots(); ++i)
731 if(abs(dec().
matrixLU().coeff(i,i)) > premultiplied_threshold)
733 eigen_internal_assert(p ==
rank());
736 dst.col(i) = originalMatrix().col(dec().
permutationQ().indices().coeff(pivots.
coeff(i)));
744 #ifndef EIGEN_PARSED_BY_DOXYGEN 745 template<
typename _MatrixType>
746 template<
typename RhsType,
typename DstType>
757 const Index rows = this->rows(),
759 nonzero_pivots = this->
rank();
760 eigen_assert(rhs.rows() == rows);
761 const Index smalldim = (std::min)(rows, cols);
763 if(nonzero_pivots == 0)
769 typename RhsType::PlainObject c(rhs.rows(), rhs.cols());
775 m_lu.topLeftCorner(smalldim,smalldim)
776 .template triangularView<UnitLower>()
777 .solveInPlace(c.topRows(smalldim));
779 c.bottomRows(rows-cols) -= m_lu.bottomRows(rows-cols) * c.topRows(cols);
782 m_lu.topLeftCorner(nonzero_pivots, nonzero_pivots)
783 .template triangularView<Upper>()
784 .solveInPlace(c.topRows(nonzero_pivots));
787 for(
Index i = 0; i < nonzero_pivots; ++i)
789 for(
Index i = nonzero_pivots; i < m_lu.cols(); ++i)
793 template<
typename _MatrixType>
794 template<
bool Conjugate,
typename RhsType,
typename DstType>
808 const Index rows = this->rows(), cols = this->cols(),
809 nonzero_pivots = this->
rank();
810 eigen_assert(rhs.rows() == cols);
811 const Index smalldim = (std::min)(rows, cols);
813 if(nonzero_pivots == 0)
819 typename RhsType::PlainObject c(rhs.rows(), rhs.cols());
826 m_lu.topLeftCorner(nonzero_pivots, nonzero_pivots)
827 .template triangularView<Upper>()
829 .solveInPlace(c.topRows(nonzero_pivots));
831 m_lu.topLeftCorner(smalldim, smalldim)
832 .template triangularView<UnitLower>()
834 .solveInPlace(c.topRows(smalldim));
837 m_lu.topLeftCorner(nonzero_pivots, nonzero_pivots)
838 .template triangularView<Upper>()
840 .solveInPlace(c.topRows(nonzero_pivots));
842 m_lu.topLeftCorner(smalldim, smalldim)
843 .template triangularView<UnitLower>()
845 .solveInPlace(c.topRows(smalldim));
850 for(
Index i = 0; i < smalldim; ++i)
851 dst.row(invp.indices().coeff(i)) = c.row(i);
852 for(
Index i = smalldim; i < rows; ++i)
853 dst.row(invp.indices().coeff(i)).setZero();
862 template<
typename DstXprType,
typename MatrixType>
869 dst = src.nestedExpression().solve(MatrixType::Identity(src.rows(), src.cols()));
882 template<
typename Derived>
const internal::image_retval< FullPivLU > image(const MatrixType &originalMatrix) const
Definition: FullPivLU.h:215
FullPivLU & setThreshold(const RealScalar &threshold)
Allows to prescribe a threshold to be used by certain methods, such as rank(), who need to determine ...
Definition: FullPivLU.h:292
InverseReturnType inverse() const
Definition: PermutationMatrix.h:196
FullPivLU & compute(const EigenBase< InputType > &matrix)
Computes the LU decomposition of the given matrix.
Definition: FullPivLU.h:119
const PermutationQType & permutationQ() const
Definition: FullPivLU.h:169
Derived & applyTranspositionOnTheRight(Index i, Index j)
Multiplies *this by the transposition on the right.
Definition: PermutationMatrix.h:185
RealScalar rcond() const
Definition: FullPivLU.h:252
Namespace containing all symbols from the Eigen library.
Definition: bench_norm.cpp:85
Holds information about the various numeric (i.e.
Definition: NumTraits.h:150
Decomposition::RealScalar rcond_estimate_helper(typename Decomposition::RealScalar matrix_norm, const Decomposition &dec)
Reciprocal condition number estimator.
Definition: ConditionEstimator.h:159
Eigen::Index Index
The interface type of indices.
Definition: EigenBase.h:37
const FullPivLU< PlainObject > fullPivLu() const
Definition: FullPivLU.h:884
Definition: UnaryFunctors.h:63
Index nonzeroPivots() const
Definition: FullPivLU.h:144
Definition: AssignmentFunctors.h:21
Definition: AssignEvaluator.h:753
Common base class for all classes T such that MatrixBase has an operator=(T) and a constructor Matrix...
Definition: EigenBase.h:28
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar & coeffRef(Index rowId, Index colId)
This is an overloaded version of DenseCoeffsBase<Derived,WriteAccessors>::coeffRef(Index,Index) const provided to by-pass the creation of an evaluator of the expression, thus saving compilation efforts.
Definition: PlainObjectBase.h:177
Definition: AssignEvaluator.h:743
Index rank() const
Definition: FullPivLU.h:332
The type used to identify a matrix expression.
Definition: Constants.h:506
Expression of the inverse of another expression.
Definition: Inverse.h:43
RealScalar threshold() const
Returns the threshold that will be used by certain methods such as rank().
Definition: FullPivLU.h:317
internal::traits< MatrixType >::Scalar determinant() const
Definition: FullPivLU.h:583
Definition: ForwardDeclarations.h:137
const MatrixType & matrixLU() const
Definition: FullPivLU.h:131
ConstTransposeReturnType transpose() const
Definition: SolverBase.h:90
FullPivLU & setThreshold(Default_t)
Allows to come back to the default behavior, letting Eigen use its default formula for determining th...
Definition: FullPivLU.h:307
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar & coeff(Index rowId, Index colId) const
This is an overloaded version of DenseCoeffsBase<Derived,ReadOnlyAccessors>::coeff(Index,Index) const provided to by-pass the creation of an evaluator of the expression, thus saving compilation efforts.
Definition: PlainObjectBase.h:154
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
const Inverse< FullPivLU > inverse() const
Definition: FullPivLU.h:400
Definition: ForwardDeclarations.h:89
bool isInjective() const
Definition: FullPivLU.h:362
bool isSurjective() const
Definition: FullPivLU.h:375
void setIdentity()
Sets *this to be the identity permutation matrix.
Definition: PermutationMatrix.h:142
MatrixType reconstructedMatrix() const
Definition: FullPivLU.h:594
bool isInvertible() const
Definition: FullPivLU.h:387
Definition: BandTriangularSolver.h:13
const internal::kernel_retval< FullPivLU > kernel() const
Definition: FullPivLU.h:189
const Solve< FullPivLU, Rhs > solve(const MatrixBase< Rhs > &b) const
Definition: FullPivLU.h:243
Definition: ForwardDeclarations.h:136
LU decomposition of a matrix with complete pivoting, and related features.
Definition: ForwardDeclarations.h:249
The type used to identify a general solver (factored) storage.
Definition: Constants.h:497
FullPivLU()
Default Constructor.
Definition: FullPivLU.h:444
Definition: ForwardDeclarations.h:139
EIGEN_DEVICE_FUNC const PermutationPType & permutationP() const
Definition: FullPivLU.h:159
const int Dynamic
This value means that a positive quantity (e.g., a size) is not known at compile-time, and that instead the value is stored in some runtime variable.
Definition: Constants.h:21
Pseudo expression representing a solving operation.
Definition: Solve.h:62
Index dimensionOfKernel() const
Definition: FullPivLU.h:349
Generic expression where a coefficient-wise unary operator is applied to an expression.
Definition: CwiseUnaryOp.h:55
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:178
AdjointReturnType adjoint() const
Definition: SolverBase.h:109
EIGEN_DEVICE_FUNC Index size() const
Definition: EigenBase.h:65
A base class for matrix decomposition and solvers.
Definition: SolverBase.h:41
EIGEN_DEVICE_FUNC Derived & derived()
Definition: EigenBase.h:44
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
Definition: ForwardDeclarations.h:17
RealScalar maxPivot() const
Definition: FullPivLU.h:153
Definition: UnaryFunctors.h:71
Definition: ForwardDeclarations.h:138