Go to the documentation of this file.
11 #ifndef EIGEN_MATRIXBASE_H
12 #define EIGEN_MATRIXBASE_H
52 #ifndef EIGEN_PARSED_BY_DOXYGEN
71 using Base::const_cast_derived;
79 using Base::operator+=;
80 using Base::operator-=;
81 using Base::operator*=;
82 using Base::operator/=;
88 #endif // not EIGEN_PARSED_BY_DOXYGEN
92 #ifndef EIGEN_PARSED_BY_DOXYGEN
96 #endif // not EIGEN_PARSED_BY_DOXYGEN
105 #ifndef EIGEN_PARSED_BY_DOXYGEN
121 #endif // not EIGEN_PARSED_BY_DOXYGEN
123 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::MatrixBase
124 #define EIGEN_DOC_UNARY_ADDONS(X,Y)
125 # include "../plugins/CommonCwiseUnaryOps.h"
126 # include "../plugins/CommonCwiseBinaryOps.h"
127 # include "../plugins/MatrixCwiseUnaryOps.h"
128 # include "../plugins/MatrixCwiseBinaryOps.h"
129 # ifdef EIGEN_MATRIXBASE_PLUGIN
130 # include EIGEN_MATRIXBASE_PLUGIN
132 #undef EIGEN_CURRENT_STORAGE_BASE_CLASS
133 #undef EIGEN_DOC_UNARY_ADDONS
144 template <
typename OtherDerived>
146 Derived&
operator=(
const DenseBase<OtherDerived>& other);
148 template <
typename OtherDerived>
150 Derived&
operator=(
const EigenBase<OtherDerived>& other);
152 template<
typename OtherDerived>
154 Derived&
operator=(
const ReturnByValue<OtherDerived>& other);
156 template<
typename OtherDerived>
158 Derived&
operator+=(
const MatrixBase<OtherDerived>& other);
159 template<
typename OtherDerived>
161 Derived&
operator-=(
const MatrixBase<OtherDerived>& other);
163 template<
typename OtherDerived>
165 const Product<Derived,OtherDerived>
166 operator*(
const MatrixBase<OtherDerived> &other)
const;
168 template<
typename OtherDerived>
170 const Product<Derived,OtherDerived,LazyProduct>
171 lazyProduct(
const MatrixBase<OtherDerived> &other)
const;
173 template<
typename OtherDerived>
174 Derived&
operator*=(
const EigenBase<OtherDerived>& other);
176 template<
typename OtherDerived>
179 template<
typename OtherDerived>
182 template<
typename DiagonalDerived>
184 const Product<Derived, DiagonalDerived, LazyProduct>
187 template<
typename OtherDerived>
190 dot(
const MatrixBase<OtherDerived>& other)
const;
235 template<
unsigned int Mode>
238 template<
unsigned int Mode>
245 template<
unsigned int UpLo>
248 template<
unsigned int UpLo>
278 template<
typename OtherDerived>
287 template<
typename OtherDerived>
295 template<
typename OtherDerived>
331 template<
typename ResultType>
338 template<
typename ResultType>
370 #ifndef EIGEN_PARSED_BY_DOXYGEN
371 template<
typename OtherDerived>
struct cross_product_return_type {
376 #endif // EIGEN_PARSED_BY_DOXYGEN
377 template<
typename OtherDerived>
379 #ifndef EIGEN_PARSED_BY_DOXYGEN
386 template<
typename OtherDerived>
406 typedef Block<
const Derived,
411 inline const HNormalizedReturnType
hnormalized()
const;
416 template<
typename EssentialPart>
419 template<
typename EssentialPart>
423 template<
typename EssentialPart>
430 template<
typename OtherScalar>
432 template<
typename OtherScalar>
437 template<
typename OtherDerived>
447 #define EIGEN_MATRIX_FUNCTION(ReturnType, Name, Description) \
449 const ReturnType<Derived> Name() const;
450 #define EIGEN_MATRIX_FUNCTION_1(ReturnType, Name, Description, Argument) \
452 const ReturnType<Derived> Name(Argument) const;
494 template<
typename Derived>
495 template<
typename OtherDerived>
499 other.
derived().applyThisOnTheRight(derived());
508 template<
typename Derived>
509 template<
typename OtherDerived>
512 other.
derived().applyThisOnTheRight(derived());
520 template<
typename Derived>
521 template<
typename OtherDerived>
524 other.
derived().applyThisOnTheLeft(derived());
529 #endif // EIGEN_MATRIXBASE_H
Expression of the inverse of another expression.
const PartialPivLU< PlainObject > lu() const
const EIGEN_STRONG_INLINE CwiseProductDenseReturnType< OtherDerived >::Type cwiseProduct(const MatrixBase< OtherDerived > &other) const
void computeInverseWithCheck(ResultType &inverse, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const
JacobiSVD< PlainObject > jacobiSvd(unsigned int computationOptions=0) const
static const EIGEN_DEVICE_FUNC BasisReturnType UnitX()
const EIGEN_DEVICE_FUNC AdjointReturnType adjoint() const
Diagonal< Derived, Index > Type
DenseBase< Derived > Base
internal::conditional< internal::is_same< typename internal::traits< Derived >::XprKind, MatrixXpr >::value, PlainMatrix, PlainArray >::type PlainObject
The plain matrix or array type corresponding to this expression.
void computeInverseAndDetWithCheck(ResultType &inverse, typename ResultType::Scalar &determinant, bool &invertible, const RealScalar &absDeterminantThreshold=NumTraits< Scalar >::dummy_precision()) const
Derived & operator+=(const ArrayBase< OtherDerived > &)
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
internal::stem_function< Scalar >::type StemFunction
internal::add_const< Diagonal< const Derived > >::type ConstDiagonalReturnType
const EIGEN_DEVICE_FUNC SinReturnType sin() const
ScalarBinaryOpTraits< typename internal::traits< Derived >::Scalar, typename internal::traits< OtherDerived >::Scalar >::ReturnType Scalar
Block< Derived, 1, internal::traits< Derived >::ColsAtCompileTime, IsRowMajor > RowXpr
LU decomposition of a matrix with partial pivoting, and related features.
Expression of a fixed-size or dynamic-size block.
EIGEN_DEVICE_FUNC Derived & derived()
const Derived & forceAlignedAccess() const
bool isOrthogonal(const MatrixBase< OtherDerived > &other, const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
const LLT< PlainObject > llt() const
const FullPivHouseholderQR< PlainObject > fullPivHouseholderQr() const
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half &a, const half &b)
NoAlias< Derived, Eigen::MatrixBase > noalias()
internal::traits< Derived >::Scalar Scalar
static const EIGEN_DEVICE_FUNC BasisReturnType UnitW()
NumTraits< Scalar >::Real RealScalar
EIGEN_DEVICE_FUNC Scalar trace() const
EIGEN_DEVICE_FUNC RealScalar squaredNorm() const
const unsigned int RowMajorBit
static const EIGEN_DEVICE_FUNC BasisReturnType UnitZ()
void applyOnTheRight(const EigenBase< OtherDerived > &other)
const typedef TriangularView< const Derived, Mode > Type
EIGEN_DEVICE_FUNC RealScalar lpNorm() const
EigenvaluesReturnType eigenvalues() const
Computes the eigenvalues of a matrix.
EIGEN_DEVICE_FUNC SelfAdjointViewReturnType< UpLo >::Type selfadjointView()
const EIGEN_DEVICE_FUNC PlainObject stableNormalized() const
Block< const Derived, internal::traits< Derived >::ColsAtCompileTime==1 ? SizeMinusOne :1, internal::traits< Derived >::ColsAtCompileTime==1 ? 1 :SizeMinusOne > ConstStartMinusOne
const EIGEN_DEVICE_FUNC LogReturnType log() const
Expression of a selfadjoint matrix from a triangular part of a dense matrix.
Expression of a mathematical vector or matrix as an array object.
Determines whether the given binary operation of two numeric types is allowed and what the scalar ret...
EIGEN_DEVICE_FUNC MatrixBase< Derived > & matrix()
const MatrixFunctionReturnValue< Derived > matrixFunction(StemFunction f) const
Helper function for the unsupported MatrixFunctions module.
const SparseView< Derived > sparseView(const Scalar &m_reference=Scalar(0), const typename NumTraits< Scalar >::Real &m_epsilon=NumTraits< Scalar >::dummy_precision()) const
#define EIGEN_SIZE_MAX(a, b)
const EIGEN_DEVICE_FUNC CwiseBinaryOp< std::equal_to< Scalar >, const Derived, const OtherDerived > cwiseEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const
const EIGEN_DEVICE_FUNC ExpReturnType exp() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator-=(const MatrixBase< OtherDerived > &other)
Pseudo expression providing an operator = assuming no aliasing.
EIGEN_DEVICE_FUNC cross_product_return_type< OtherDerived >::type cross(const MatrixBase< OtherDerived > &other) const
Rotation given by a cosine-sine pair.
const FullPivLU< PlainObject > fullPivLu() const
LU decomposition of a matrix with complete pivoting, and related features.
EIGEN_DEVICE_FUNC Matrix< Scalar, 3, 1 > eulerAngles(Index a0, Index a1, Index a2) const
const ColPivHouseholderQR< PlainObject > colPivHouseholderQr() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EvalReturnType eval() const
EIGEN_DEVICE_FUNC MatrixBase()
EIGEN_DEVICE_FUNC bool operator!=(const MatrixBase< OtherDerived > &other) const
Generic expression of a matrix where all coefficients are defined by a functor.
const Derived & forceAlignedAccessIf() const
Expression of one (or a set of) homogeneous vector(s)
void makeHouseholder(EssentialPart &essential, Scalar &tau, RealScalar &beta) const
const PermutationWrapper< const Derived > asPermutation() const
const EIGEN_DEVICE_FUNC CoshReturnType cosh() const
Block< const CwiseNullaryOp< internal::scalar_identity_op< Scalar >, SquareMatrixType >, internal::traits< Derived >::RowsAtCompileTime, internal::traits< Derived >::ColsAtCompileTime > BasisReturnType
static const EIGEN_DEVICE_FUNC BasisReturnType UnitY()
internal::add_const< Diagonal< const Derived, DynamicIndex > >::type ConstDiagonalDynamicIndexReturnType
RealScalar hypotNorm() const
Scalar determinant() const
Householder rank-revealing QR decomposition of a matrix with full pivoting.
NumTraits< Scalar >::Real RealScalar
RealScalar operatorNorm() const
Computes the L2 operator norm.
EIGEN_DEVICE_FUNC PlainObject cross3(const MatrixBase< OtherDerived > &other) const
static const EIGEN_DEVICE_FUNC IdentityReturnType Identity()
bool isDiagonal(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
EIGEN_DEVICE_FUNC void stableNormalize()
Class to view a vector of integers as a permutation matrix.
EIGEN_DEVICE_FUNC const Scalar & q
const EIGEN_DEVICE_FUNC SquareReturnType square() const
Base::CoeffReturnType CoeffReturnType
CwiseNullaryOp< internal::scalar_constant_op< Scalar >, PlainObject > ConstantReturnType
class Bidiagonal Divide and Conquer SVD
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE T mini(const T &x, const T &y)
Expression of a diagonal/subdiagonal/superdiagonal in a matrix.
Diagonal< Derived, DynamicIndex > DiagonalDynamicIndexReturnType
EIGEN_DEVICE_FUNC Derived & lazyAssign(const DenseBase< OtherDerived > &other)
#define EIGEN_STRONG_INLINE
EIGEN_DEVICE_FUNC void normalize()
void applyHouseholderOnTheLeft(const EssentialPart &essential, const Scalar &tau, Scalar *workspace)
Matrix< Scalar, MatrixBase::RowsAtCompileTime, MatrixBase::ColsAtCompileTime > type
Complete orthogonal decomposition (COD) of a matrix.
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ArrayWrapper< Derived > array()
bool isUnitary(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
const EIGEN_DEVICE_FUNC DiagonalWrapper< const Derived > asDiagonal() const
Robust Cholesky decomposition of a matrix with pivoting.
const typedef Diagonal< const Derived, Index > Type
EIGEN_DEVICE_FUNC TriangularViewReturnType< Mode >::Type triangularView()
Householder rank-revealing QR decomposition of a matrix with column-pivoting.
bool isIdentity(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
BDCSVD< PlainObject > bdcSvd(unsigned int computationOptions=0) const
Expression of a diagonal matrix.
internal::traits< Derived >::StorageIndex StorageIndex
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator=(const MatrixBase &other)
EIGEN_DEVICE_FUNC HomogeneousReturnType homogeneous() const
Base class for all 1D and 2D array, and related expressions.
NumTraits< Scalar >::Real RealScalar
CwiseNullaryOp< internal::scalar_identity_op< Scalar >, PlainObject > IdentityReturnType
Block< Derived, internal::traits< Derived >::RowsAtCompileTime, 1, !IsRowMajor > ColXpr
Matrix< std::complex< RealScalar >, internal::traits< Derived >::ColsAtCompileTime, 1, ColMajor > EigenvaluesReturnType
Base::PlainObject PlainObject
const EIGEN_DEVICE_FUNC HNormalizedReturnType hnormalized() const
homogeneous normalization
void applyOnTheLeft(const EigenBase< OtherDerived > &other)
Two-sided Jacobi SVD decomposition of a rectangular matrix.
Base::ConstTransposeReturnType ConstTransposeReturnType
internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, ConstTransposeReturnType >, ConstTransposeReturnType >::type AdjointReturnType
TriangularView< Derived, Mode > Type
bool isLowerTriangular(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
const CompleteOrthogonalDecomposition< PlainObject > completeOrthogonalDecomposition() const
EIGEN_DEVICE_FUNC ScalarBinaryOpTraits< typename internal::traits< Derived >::Scalar, typename internal::traits< OtherDerived >::Scalar >::ReturnType dot(const MatrixBase< OtherDerived > &other) const
MatrixBase StorageBaseType
Standard Cholesky decomposition (LL^T) of a matrix and associated features.
EIGEN_DEVICE_FUNC void adjointInPlace()
const HouseholderQR< PlainObject > householderQr() const
const EIGEN_DEVICE_FUNC CwiseBinaryOp< std::not_equal_to< Scalar >, const Derived, const OtherDerived > cwiseNotEqual(const EIGEN_CURRENT_STORAGE_BASE_CLASS< OtherDerived > &other) const
Diagonal< Derived > DiagonalReturnType
@ HomogeneousReturnTypeDirection
Base class for all dense matrices, vectors, and arrays.
EIGEN_DEVICE_FUNC Index diagonalSize() const
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
const typedef SelfAdjointView< const Derived, UpLo > Type
Derived & forceAlignedAccessIf()
internal::add_const< Transpose< const Derived > >::type ConstTransposeReturnType
Generic expression where a coefficient-wise unary operator is applied to an expression.
void applyHouseholderOnTheRight(const EssentialPart &essential, const Scalar &tau, Scalar *workspace)
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE ArrayWrapper< const Derived > array() const
internal::traits< Derived >::Scalar Scalar
Base::CoeffReturnType CoeffReturnType
#define EIGEN_MATRIX_FUNCTION(ReturnType, Name, Description)
const EIGEN_DEVICE_FUNC Product< Derived, OtherDerived, LazyProduct > lazyProduct(const MatrixBase< OtherDerived > &other) const
Derived & operator-=(const ArrayBase< OtherDerived > &)
Expression of a dense or sparse matrix with zero or too small values removed.
Homogeneous< Derived, HomogeneousReturnTypeDirection > HomogeneousReturnType
static const EIGEN_DEVICE_FUNC BasisReturnType Unit(Index size, Index i)
const EIGEN_DEVICE_FUNC Product< Derived, OtherDerived > operator*(const MatrixBase< OtherDerived > &other) const
Base class of any sparse matrices or sparse expressions.
Derived & operator*=(const EigenBase< OtherDerived > &other)
internal::packet_traits< Scalar >::type PacketScalar
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
const EIGEN_STRONG_INLINE SparseMatrixBase< OtherDerived >::template CwiseProductDenseReturnType< Derived >::Type cwiseProduct(const SparseMatrixBase< OtherDerived > &other) const
Matrix< Scalar, EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime), EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime)> SquareMatrixType
EIGEN_DEVICE_FUNC RealScalar norm() const
The matrix class, also used for vectors and row-vectors.
EIGEN_DEVICE_FUNC DiagonalReturnType diagonal()
RealScalar stableNorm() const
Base class for all dense matrices, vectors, and expressions.
Derived & forceAlignedAccess()
void makeHouseholderInPlace(Scalar &tau, RealScalar &beta)
internal::traits< Derived >::StorageKind StorageKind
const EIGEN_DEVICE_FUNC SinhReturnType sinh() const
Expression of a triangular part in a matrix.
#define EIGEN_MATRIX_FUNCTION_1(ReturnType, Name, Description, Argument)
const PartialPivLU< PlainObject > partialPivLu() const
const LDLT< PlainObject > ldlt() const
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
const EIGEN_DEVICE_FUNC MatrixBase< Derived > & matrix() const
const EIGEN_DEVICE_FUNC CosReturnType cos() const
const EIGEN_DEVICE_FUNC PlainObject normalized() const
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator+=(const MatrixBase< OtherDerived > &other)
EIGEN_DEVICE_FUNC Derived & setIdentity()
typedef EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(ConstStartMinusOne, Scalar, quotient) HNormalizedReturnType
SelfAdjointView< Derived, UpLo > Type
EIGEN_DEVICE_FUNC bool operator==(const MatrixBase< OtherDerived > &other) const
bool isUpperTriangular(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
RealScalar blueNorm() const
Householder QR decomposition of a matrix.
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
EIGEN_DEVICE_FUNC PlainObject unitOrthogonal(void) const
const Inverse< Derived > inverse() const
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:56