10 #ifndef EIGEN_SELFADJOINTMATRIX_H
11 #define EIGEN_SELFADJOINTMATRIX_H
32 template<
typename MatrixType,
unsigned int UpLo>
36 typedef typename remove_all<MatrixTypeNested>::type MatrixTypeNestedCleaned;
37 typedef MatrixType ExpressionType;
38 typedef typename MatrixType::PlainObject FullMatrixType;
42 Flags = MatrixTypeNestedCleaned::Flags & (HereditaryBits|FlagsLvalueBit)
54 typedef _MatrixType MatrixType;
58 typedef MatrixTypeNestedCleaned NestedExpression;
62 typedef typename MatrixType::StorageIndex StorageIndex;
63 typedef typename internal::remove_all<typename MatrixType::ConjugateReturnType>::type MatrixConjugateReturnType;
71 typedef typename MatrixType::PlainObject PlainObject;
76 EIGEN_STATIC_ASSERT(UpLo==
Lower || UpLo==
Upper,SELFADJOINTVIEW_ACCEPTS_UPPER_AND_LOWER_MODE_ONLY);
80 inline Index rows()
const {
return m_matrix.rows(); }
82 inline Index cols()
const {
return m_matrix.cols(); }
84 inline Index outerStride()
const {
return m_matrix.outerStride(); }
86 inline Index innerStride()
const {
return m_matrix.innerStride(); }
94 Base::check_coordinates_internal(row, col);
95 return m_matrix.coeff(row, col);
105 Base::check_coordinates_internal(row, col);
106 return m_matrix.coeffRef(row, col);
111 const MatrixTypeNestedCleaned& _expression()
const {
return m_matrix; }
114 const MatrixTypeNestedCleaned& nestedExpression()
const {
return m_matrix; }
116 MatrixTypeNestedCleaned& nestedExpression() {
return m_matrix; }
119 template<
typename OtherDerived>
121 const Product<SelfAdjointView,OtherDerived>
128 template<
typename OtherDerived>
friend
136 friend EIGEN_DEVICE_FUNC
140 return (s*mat.nestedExpression()).template selfadjointView<UpLo>();
153 template<
typename DerivedU,
typename DerivedV>
167 template<
typename DerivedU>
181 template<
unsigned int TriMode>
210 return ReturnType(m_matrix.template conjugateIf<Cond>());
224 EIGEN_STATIC_ASSERT_LVALUE(MatrixType)
225 typename MatrixType::TransposeReturnType tmp(m_matrix);
243 typename MatrixType::ConstDiagonalReturnType
diagonal()
const
245 return typename MatrixType::ConstDiagonalReturnType(m_matrix);
266 MatrixTypeNested m_matrix;
284 template<
typename MatrixType,
unsigned int Mode>
291 template<
int UpLo,
int SetOpposite,
typename DstEvaluatorTypeT,
typename SrcEvaluatorTypeT,
typename Functor,
int Version>
297 typedef typename Base::DstXprType DstXprType;
298 typedef typename Base::SrcXprType SrcXprType;
301 using Base::m_functor;
304 typedef typename Base::DstEvaluatorType DstEvaluatorType;
305 typedef typename Base::SrcEvaluatorType SrcEvaluatorType;
306 typedef typename Base::Scalar Scalar;
311 :
Base(dst, src, func, dstExpr)
316 eigen_internal_assert(row!=col);
317 Scalar tmp = m_src.coeff(row,col);
318 m_functor.assignCoeff(m_dst.coeffRef(row,col), tmp);
319 m_functor.assignCoeff(m_dst.coeffRef(col,row), numext::conj(tmp));
322 EIGEN_DEVICE_FUNC
void assignDiagonalCoeff(
Index id)
327 EIGEN_DEVICE_FUNC
void assignOppositeCoeff(
Index,
Index)
328 { eigen_internal_assert(
false &&
"should never be called"); }
338 template<
typename Derived>
339 template<
unsigned int UpLo>
343 return typename ConstSelfAdjointViewReturnType<UpLo>::Type(derived());
355 template<
typename Derived>
356 template<
unsigned int UpLo>
360 return typename SelfAdjointViewReturnType<UpLo>::Type(derived());
365 #endif // EIGEN_SELFADJOINTMATRIX_H
Definition: AssignEvaluator.h:619
Namespace containing all symbols from the Eigen library.
Definition: LDLT.h:16
NumTraits< Scalar >::Real RealScalar
Definition: SelfAdjointView.h:256
EIGEN_DEVICE_FUNC MatrixType::ConstDiagonalReturnType diagonal() const
Definition: SelfAdjointView.h:243
Eigen::Index Index
The interface type of indices.
Definition: EigenBase.h:39
EIGEN_DEVICE_FUNC internal::conditional< Cond, ConjugateReturnType, ConstSelfAdjointView >::type conjugateIf() const
Definition: SelfAdjointView.h:207
const LDLT< PlainObject, UpLo > ldlt() const
Definition: LDLT.h:670
Definition: XprHelper.h:668
EIGEN_DEVICE_FUNC const AdjointReturnType adjoint() const
Definition: SelfAdjointView.h:216
const LLT< PlainObject, UpLo > llt() const
Definition: LLT.h:551
@ Upper
Definition: Constants.h:210
Definition: CoreEvaluators.h:80
Expression of a selfadjoint matrix from a triangular part of a dense matrix.
Definition: SelfAdjointView.h:51
EIGEN_DEVICE_FUNC EigenvaluesReturnType eigenvalues() const
Computes the eigenvalues of a matrix.
Definition: MatrixBaseEigenvalues.h:88
Definition: AssignEvaluator.h:29
const unsigned int DirectAccessBit
Definition: Constants.h:154
EIGEN_DEVICE_FUNC const ConjugateReturnType conjugate() const
Definition: SelfAdjointView.h:198
const unsigned int PacketAccessBit
Definition: Constants.h:93
internal::traits< SelfAdjointView >::Scalar Scalar
The type of coefficients in this matrix.
Definition: SelfAdjointView.h:61
EIGEN_DEVICE_FUNC RealScalar operatorNorm() const
Computes the L2 operator norm.
Definition: MatrixBaseEigenvalues.h:151
EIGEN_DEVICE_FUNC SelfAdjointView & rankUpdate(const MatrixBase< DerivedU > &u, const Scalar &alpha=Scalar(1))
const unsigned int LvalueBit
Definition: Constants.h:143
Base class for triangular part in a matrix.
Definition: TriangularMatrix.h:28
EIGEN_DEVICE_FUNC TransposeReturnType transpose()
Definition: SelfAdjointView.h:222
Expression of the product of two arbitrary matrices or vectors.
Definition: Product.h:75
EIGEN_DEVICE_FUNC const ConstTransposeReturnType transpose() const
Definition: SelfAdjointView.h:232
Robust Cholesky decomposition of a matrix with pivoting.
Definition: LDLT.h:61
EIGEN_DEVICE_FUNC const Product< SelfAdjointView, OtherDerived > operator*(const MatrixBase< OtherDerived > &rhs) const
Definition: SelfAdjointView.h:122
@ Lower
Definition: Constants.h:208
Definition: XprHelper.h:425
friend EIGEN_DEVICE_FUNC const Product< OtherDerived, SelfAdjointView > operator*(const MatrixBase< OtherDerived > &lhs, const SelfAdjointView &rhs)
Definition: SelfAdjointView.h:131
const unsigned int LinearAccessBit
Definition: Constants.h:129
Standard Cholesky decomposition (LL^T) of a matrix and associated features.
Definition: LLT.h:68
Definition: ForwardDeclarations.h:17
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void assignCoeff(Index row, Index col)
Assign src(row,col) to dst(row,col) through the assignment functor.
Definition: AssignEvaluator.h:654
Definition: Constants.h:530
Matrix< RealScalar, internal::traits< MatrixType >::ColsAtCompileTime, 1 > EigenvaluesReturnType
Definition: SelfAdjointView.h:258
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:180
Definition: TriangularMatrix.h:759
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void assignCoeff(Index row, Index col)
Assign src(row,col) to dst(row,col) through the assignment functor.
Definition: AssignEvaluator.h:654
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:50
EIGEN_DEVICE_FUNC Scalar coeff(Index row, Index col) const
Definition: SelfAdjointView.h:92
EIGEN_DEVICE_FUNC Scalar & coeffRef(Index row, Index col)
Definition: SelfAdjointView.h:102
Expression of a triangular part in a matrix.
Definition: TriangularMatrix.h:189
Definition: Constants.h:538
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:213
EIGEN_DEVICE_FUNC internal::conditional<(TriMode &(Upper|Lower))==(UpLo &(Upper|Lower)), TriangularView< MatrixType, TriMode >, TriangularView< typename MatrixType::AdjointReturnType, TriMode > >::type triangularView() const
Definition: SelfAdjointView.h:186
@ SelfAdjoint
Definition: Constants.h:224
EIGEN_DEVICE_FUNC SelfAdjointView & rankUpdate(const MatrixBase< DerivedU > &u, const MatrixBase< DerivedV > &v, const Scalar &alpha=Scalar(1))
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:42