Public Types | Public Member Functions | Friends | List of all members
Eigen::DiagonalBase< Derived > Class Template Reference

#include <DiagonalMatrix.h>

Inheritance diagram for Eigen::DiagonalBase< Derived >:
Inheritance graph
[legend]

Public Types

enum  {
  RowsAtCompileTime = DiagonalVectorType::SizeAtCompileTime, ColsAtCompileTime = DiagonalVectorType::SizeAtCompileTime, MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime, MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
  IsVectorAtCompileTime = 0, Flags = NoPreferredStorageOrderBit
}
 
typedef Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTimeDenseMatrixType
 
typedef DenseMatrixType DenseType
 
typedef internal::traits< Derived >::DiagonalVectorType DiagonalVectorType
 
typedef DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > InverseReturnType
 
typedef DiagonalMatrix< Scalar, DiagonalVectorType::SizeAtCompileTime, DiagonalVectorType::MaxSizeAtCompileTime > PlainObject
 
typedef DiagonalVectorType::RealScalar RealScalar
 
typedef DiagonalVectorType::Scalar Scalar
 
typedef internal::traits< Derived >::StorageIndex StorageIndex
 
typedef internal::traits< Derived >::StorageKind StorageKind
 
- Public Types inherited from Eigen::EigenBase< Derived >
typedef Eigen::Index Index
 The interface type of indices. More...
 
typedef internal::traits< Derived >::StorageKind StorageKind
 

Public Member Functions

EIGEN_DEVICE_FUNC Index cols () const
 
EIGEN_DEVICE_FUNC Derived & derived ()
 
const EIGEN_DEVICE_FUNC Derived & derived () const
 
EIGEN_DEVICE_FUNC DiagonalVectorTypediagonal ()
 
const EIGEN_DEVICE_FUNC DiagonalVectorTypediagonal () const
 
const EIGEN_DEVICE_FUNC InverseReturnType inverse () const
 
template<typename MatrixDerived >
const EIGEN_DEVICE_FUNC Product< Derived, MatrixDerived, LazyProductoperator* (const MatrixBase< MatrixDerived > &matrix) const
 
const EIGEN_DEVICE_FUNC DiagonalWrapper< const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DiagonalVectorType, Scalar, product) > operator* (const Scalar &scalar) const
 
template<typename OtherDerived >
const EIGEN_DEVICE_FUNC DiagonalWrapper< const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType, typename OtherDerived::DiagonalVectorType, sum) > operator+ (const DiagonalBase< OtherDerived > &other) const
 
template<typename OtherDerived >
const EIGEN_DEVICE_FUNC DiagonalWrapper< const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType, typename OtherDerived::DiagonalVectorType, difference) > operator- (const DiagonalBase< OtherDerived > &other) const
 
EIGEN_DEVICE_FUNC Index rows () const
 
EIGEN_DEVICE_FUNC DenseMatrixType toDenseMatrix () const
 
- Public Member Functions inherited from Eigen::EigenBase< Derived >
template<typename Dest >
EIGEN_DEVICE_FUNC void addTo (Dest &dst) const
 
template<typename Dest >
EIGEN_DEVICE_FUNC void applyThisOnTheLeft (Dest &dst) const
 
template<typename Dest >
EIGEN_DEVICE_FUNC void applyThisOnTheRight (Dest &dst) const
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols () const EIGEN_NOEXCEPT
 
EIGEN_DEVICE_FUNC Derived & const_cast_derived () const
 
const EIGEN_DEVICE_FUNC Derived & const_derived () const
 
EIGEN_DEVICE_FUNC Derived & derived ()
 
const EIGEN_DEVICE_FUNC Derived & derived () const
 
template<typename Dest >
EIGEN_DEVICE_FUNC void evalTo (Dest &dst) const
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows () const EIGEN_NOEXCEPT
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index size () const EIGEN_NOEXCEPT
 
template<typename Dest >
EIGEN_DEVICE_FUNC void subTo (Dest &dst) const
 

Friends

EIGEN_DEVICE_FUNC const friend DiagonalWrapper< const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar, DiagonalVectorType, product) > operator* (const Scalar &scalar, const DiagonalBase &other)
 

Detailed Description

template<typename Derived>
class Eigen::DiagonalBase< Derived >

Definition at line 18 of file DiagonalMatrix.h.

Member Typedef Documentation

◆ DenseMatrixType

Definition at line 36 of file DiagonalMatrix.h.

◆ DenseType

template<typename Derived >
typedef DenseMatrixType Eigen::DiagonalBase< Derived >::DenseType

Definition at line 37 of file DiagonalMatrix.h.

◆ DiagonalVectorType

template<typename Derived >
typedef internal::traits<Derived>::DiagonalVectorType Eigen::DiagonalBase< Derived >::DiagonalVectorType

Definition at line 21 of file DiagonalMatrix.h.

◆ InverseReturnType

Definition at line 66 of file DiagonalMatrix.h.

◆ PlainObject

template<typename Derived >
typedef DiagonalMatrix<Scalar,DiagonalVectorType::SizeAtCompileTime,DiagonalVectorType::MaxSizeAtCompileTime> Eigen::DiagonalBase< Derived >::PlainObject

Definition at line 38 of file DiagonalMatrix.h.

◆ RealScalar

template<typename Derived >
typedef DiagonalVectorType::RealScalar Eigen::DiagonalBase< Derived >::RealScalar

Definition at line 23 of file DiagonalMatrix.h.

◆ Scalar

template<typename Derived >
typedef DiagonalVectorType::Scalar Eigen::DiagonalBase< Derived >::Scalar

Definition at line 22 of file DiagonalMatrix.h.

◆ StorageIndex

template<typename Derived >
typedef internal::traits<Derived>::StorageIndex Eigen::DiagonalBase< Derived >::StorageIndex

Definition at line 25 of file DiagonalMatrix.h.

◆ StorageKind

template<typename Derived >
typedef internal::traits<Derived>::StorageKind Eigen::DiagonalBase< Derived >::StorageKind

Definition at line 24 of file DiagonalMatrix.h.

Member Enumeration Documentation

◆ anonymous enum

template<typename Derived >
anonymous enum
Enumerator
RowsAtCompileTime 
ColsAtCompileTime 
MaxRowsAtCompileTime 
MaxColsAtCompileTime 
IsVectorAtCompileTime 
Flags 

Definition at line 27 of file DiagonalMatrix.h.

Member Function Documentation

◆ cols()

template<typename Derived >
EIGEN_DEVICE_FUNC Index Eigen::DiagonalBase< Derived >::cols ( ) const
inline

Definition at line 56 of file DiagonalMatrix.h.

◆ derived() [1/2]

template<typename Derived >
EIGEN_DEVICE_FUNC Derived& Eigen::DiagonalBase< Derived >::derived ( )
inline

Definition at line 43 of file DiagonalMatrix.h.

◆ derived() [2/2]

template<typename Derived >
const EIGEN_DEVICE_FUNC Derived& Eigen::DiagonalBase< Derived >::derived ( ) const
inline

Definition at line 41 of file DiagonalMatrix.h.

◆ diagonal() [1/2]

template<typename Derived >
EIGEN_DEVICE_FUNC DiagonalVectorType& Eigen::DiagonalBase< Derived >::diagonal ( )
inline

Definition at line 51 of file DiagonalMatrix.h.

◆ diagonal() [2/2]

template<typename Derived >
const EIGEN_DEVICE_FUNC DiagonalVectorType& Eigen::DiagonalBase< Derived >::diagonal ( ) const
inline

Definition at line 49 of file DiagonalMatrix.h.

◆ inverse()

template<typename Derived >
const EIGEN_DEVICE_FUNC InverseReturnType Eigen::DiagonalBase< Derived >::inverse ( ) const
inline

Definition at line 69 of file DiagonalMatrix.h.

◆ operator*() [1/2]

template<typename Derived >
template<typename MatrixDerived >
const EIGEN_DEVICE_FUNC Product<Derived,MatrixDerived,LazyProduct> Eigen::DiagonalBase< Derived >::operator* ( const MatrixBase< MatrixDerived > &  matrix) const
inline

Definition at line 61 of file DiagonalMatrix.h.

◆ operator*() [2/2]

template<typename Derived >
const EIGEN_DEVICE_FUNC DiagonalWrapper<const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DiagonalVectorType,Scalar,product) > Eigen::DiagonalBase< Derived >::operator* ( const Scalar scalar) const
inline

Definition at line 76 of file DiagonalMatrix.h.

◆ operator+()

template<typename Derived >
template<typename OtherDerived >
const EIGEN_DEVICE_FUNC DiagonalWrapper<const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType,typename OtherDerived::DiagonalVectorType,sum) > Eigen::DiagonalBase< Derived >::operator+ ( const DiagonalBase< OtherDerived > &  other) const
inline

Definition at line 94 of file DiagonalMatrix.h.

◆ operator-()

template<typename Derived >
template<typename OtherDerived >
const EIGEN_DEVICE_FUNC DiagonalWrapper<const EIGEN_CWISE_BINARY_RETURN_TYPE(DiagonalVectorType,typename OtherDerived::DiagonalVectorType,difference) > Eigen::DiagonalBase< Derived >::operator- ( const DiagonalBase< OtherDerived > &  other) const
inline

Definition at line 106 of file DiagonalMatrix.h.

◆ rows()

template<typename Derived >
EIGEN_DEVICE_FUNC Index Eigen::DiagonalBase< Derived >::rows ( ) const
inline

Definition at line 54 of file DiagonalMatrix.h.

◆ toDenseMatrix()

template<typename Derived >
EIGEN_DEVICE_FUNC DenseMatrixType Eigen::DiagonalBase< Derived >::toDenseMatrix ( ) const
inline

Definition at line 46 of file DiagonalMatrix.h.

Friends And Related Function Documentation

◆ operator*

template<typename Derived >
EIGEN_DEVICE_FUNC const friend DiagonalWrapper<const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar,DiagonalVectorType,product) > operator* ( const Scalar scalar,
const DiagonalBase< Derived > &  other 
)
friend

Definition at line 82 of file DiagonalMatrix.h.


The documentation for this class was generated from the following file:


gtsam
Author(s):
autogenerated on Wed May 15 2024 15:28:05