Shapeworks Studio  2.1
Shape analysis software suite
List of all members | Public Types | Public Member Functions | Friends
Eigen::DiagonalBase< Derived > Class Template Reference
+ Inheritance diagram for Eigen::DiagonalBase< Derived >:
+ Collaboration diagram for Eigen::DiagonalBase< Derived >:

Public Types

enum  {
  RowsAtCompileTime = DiagonalVectorType::SizeAtCompileTime, ColsAtCompileTime = DiagonalVectorType::SizeAtCompileTime, MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime, MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
  IsVectorAtCompileTime = 0, Flags = 0
}
 
typedef internal::traits< Derived >::DiagonalVectorType DiagonalVectorType
 
typedef DiagonalVectorType::Scalar Scalar
 
typedef DiagonalVectorType::RealScalar RealScalar
 
typedef internal::traits< Derived >::StorageKind StorageKind
 
typedef internal::traits< Derived >::Index Index
 
typedef Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime > DenseMatrixType
 
typedef DenseMatrixType DenseType
 
typedef DiagonalMatrix< Scalar, DiagonalVectorType::SizeAtCompileTime, DiagonalVectorType::MaxSizeAtCompileTime > PlainObject
 
- Public Types inherited from Eigen::EigenBase< Derived >
typedef internal::traits< Derived >::StorageKind StorageKind
 
typedef internal::traits< Derived >::Index Index
 

Public Member Functions

const Derived & derived () const
 
Derived & derived ()
 
DenseMatrixType toDenseMatrix () const
 
template<typename DenseDerived >
void evalTo (MatrixBase< DenseDerived > &other) const
 
template<typename DenseDerived >
void addTo (MatrixBase< DenseDerived > &other) const
 
template<typename DenseDerived >
void subTo (MatrixBase< DenseDerived > &other) const
 
const DiagonalVectorType & diagonal () const
 
DiagonalVectorType & diagonal ()
 
Index rows () const
 
Index cols () const
 
template<typename MatrixDerived >
const DiagonalProduct< MatrixDerived, Derived, OnTheLeft > operator* (const MatrixBase< MatrixDerived > &matrix) const
 
const DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > inverse () const
 
const DiagonalWrapper< const CwiseUnaryOp< internal::scalar_multiple_op< Scalar >, const DiagonalVectorType > > operator* (const Scalar &scalar) const
 
- Public Member Functions inherited from Eigen::EigenBase< Derived >
Derived & derived ()
 
const Derived & derived () const
 
Derived & const_cast_derived () const
 
const Derived & const_derived () const
 
Index rows () const
 
Index cols () const
 
Index size () const
 
template<typename Dest >
void evalTo (Dest &dst) const
 
template<typename Dest >
void addTo (Dest &dst) const
 
template<typename Dest >
void subTo (Dest &dst) const
 
template<typename Dest >
void applyThisOnTheRight (Dest &dst) const
 
template<typename Dest >
void applyThisOnTheLeft (Dest &dst) const
 

Friends

const DiagonalWrapper< const CwiseUnaryOp< internal::scalar_multiple_op< Scalar >, const DiagonalVectorType > > 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 Function Documentation

template<typename Derived>
template<typename MatrixDerived >
const DiagonalProduct<MatrixDerived, Derived, OnTheLeft> Eigen::DiagonalBase< Derived >::operator* ( const MatrixBase< MatrixDerived > &  matrix) const
inline
Returns
the diagonal matrix product of *this by the matrix matrix.

Definition at line 63 of file DiagonalMatrix.h.

64  {
65  return DiagonalProduct<MatrixDerived, Derived, OnTheLeft>(matrix.derived(), derived());
66  }
Definition: math3d.h:219

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