Represents a diagonal matrix with its storage. More...
Public Types | |
typedef DiagonalWrapper< const CwiseNullaryOp< internal::scalar_constant_op< Scalar >, DiagonalVectorType > > | InitializeReturnType |
![]() | |
enum | |
typedef Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime > | DenseMatrixType |
typedef DenseMatrixType | DenseType |
using | DiagonalDifferenceReturnType = DiagonalWrapper< const CwiseBinaryOp< internal::scalar_difference_op< DiagonalVectorType ::Scalar, typename OtherDerived::DiagonalVectorType ::Scalar >, const DiagonalVectorType, const typename OtherDerived::DiagonalVectorType > > |
using | DiagonalInverseReturnType = DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > |
using | DiagonalProductReturnType = DiagonalWrapper< const CwiseBinaryOp< internal::scalar_product_op< DiagonalVectorType ::Scalar, typename OtherDerived::DiagonalVectorType ::Scalar >, const DiagonalVectorType, const typename OtherDerived::DiagonalVectorType > > |
using | DiagonalScaleReturnType = DiagonalWrapper< const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DiagonalVectorType, Scalar, product)> |
using | DiagonalSumReturnType = DiagonalWrapper< const CwiseBinaryOp< internal::scalar_sum_op< DiagonalVectorType ::Scalar, typename OtherDerived::DiagonalVectorType ::Scalar >, const DiagonalVectorType, const typename OtherDerived::DiagonalVectorType > > |
typedef internal::traits< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > >::DiagonalVectorType | DiagonalVectorType |
typedef DiagonalMatrix< Scalar, DiagonalVectorType::SizeAtCompileTime, DiagonalVectorType::MaxSizeAtCompileTime > | PlainObject |
typedef DiagonalVectorType::RealScalar | RealScalar |
typedef DiagonalVectorType::Scalar | Scalar |
using | ScaleDiagonalReturnType = DiagonalWrapper< const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar, DiagonalVectorType, product)> |
typedef internal::traits< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > >::StorageIndex | StorageIndex |
typedef internal::traits< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > >::StorageKind | StorageKind |
![]() | |
typedef Eigen::Index | Index |
The interface type of indices. More... | |
typedef internal::traits< Derived >::StorageKind | StorageKind |
Public Member Functions | |
DiagonalVectorType & | diagonal () |
const DiagonalVectorType & | diagonal () const |
DiagonalMatrix () | |
template<typename OtherDerived > | |
DiagonalMatrix (const DiagonalBase< OtherDerived > &other) | |
template<typename OtherDerived > | |
DiagonalMatrix (const MatrixBase< OtherDerived > &other) | |
template<typename... ArgTypes> | |
DiagonalMatrix (const Scalar &a0, const Scalar &a1, const Scalar &a2, const ArgTypes &... args) | |
Construct a diagonal matrix with fixed size from an arbitrary number of coefficients. More... | |
DiagonalMatrix (const Scalar &x, const Scalar &y) | |
DiagonalMatrix (const Scalar &x, const Scalar &y, const Scalar &z) | |
DiagonalMatrix (const std::initializer_list< std::initializer_list< Scalar >> &list) | |
Constructs a DiagonalMatrix and initializes it by elements given by an initializer list of initializer lists [c++11] More... | |
DiagonalMatrix (DiagonalVectorType &&diag) | |
Constructs a DiagonalMatrix from an r-value diagonal vector type. More... | |
DiagonalMatrix (Index dim) | |
template<typename OtherDerived > | |
DiagonalMatrix & | operator= (const DiagonalBase< OtherDerived > &other) |
void | resize (Index size) |
void | setIdentity () |
void | setIdentity (Index size) |
void | setZero () |
void | setZero (Index size) |
![]() | |
Scalar | coeff (Index row, Index col) const |
EIGEN_CONSTEXPR Index | cols () const |
DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > & | derived () |
const DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime > & | derived () const |
DiagonalVectorType & | diagonal () |
const DiagonalVectorType & | diagonal () const |
const DiagonalInverseReturnType | inverse () const |
const DiagonalProductReturnType< OtherDerived > | operator* (const DiagonalBase< OtherDerived > &other) const |
const Product< DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime >, MatrixDerived, LazyProduct > | operator* (const MatrixBase< MatrixDerived > &matrix) const |
const DiagonalScaleReturnType | operator* (const Scalar &scalar) const |
const DiagonalSumReturnType< OtherDerived > | operator+ (const DiagonalBase< OtherDerived > &other) const |
const DiagonalDifferenceReturnType< OtherDerived > | operator- (const DiagonalBase< OtherDerived > &other) const |
EIGEN_CONSTEXPR Index | rows () const |
DenseMatrixType | toDenseMatrix () const |
![]() | |
template<typename Dest > | |
void | addTo (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheLeft (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheRight (Dest &dst) const |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
Derived & | const_cast_derived () const |
const Derived & | const_derived () const |
Derived & | derived () |
const Derived & | derived () const |
template<typename Dest > | |
void | evalTo (Dest &dst) const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
template<typename Dest > | |
void | subTo (Dest &dst) const |
Static Public Member Functions | |
static const InitializeReturnType | Identity () |
static const InitializeReturnType | Identity (Index size) |
static const InitializeReturnType | Zero () |
static const InitializeReturnType | Zero (Index size) |
Protected Attributes | |
DiagonalVectorType | m_diagonal |
Represents a diagonal matrix with its storage.
Scalar_ | the type of coefficients |
SizeAtCompileTime | the dimension of the matrix, or Dynamic |
MaxSizeAtCompileTime | the dimension of the matrix, or Dynamic. This parameter is optional and defaults to SizeAtCompileTime. Most of the time, you do not need to specify it. |
Definition at line 183 of file DiagonalMatrix.h.
typedef DiagonalWrapper<const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, DiagonalVectorType> > Eigen::DiagonalMatrix< Scalar_, SizeAtCompileTime, MaxSizeAtCompileTime >::InitializeReturnType |
Definition at line 286 of file DiagonalMatrix.h.
|
inline |
Default constructor without initialization
Definition at line 210 of file DiagonalMatrix.h.
|
inlineexplicit |
Constructs a diagonal matrix with given dimension
Definition at line 214 of file DiagonalMatrix.h.
|
inline |
|
inline |
|
inline |
Construct a diagonal matrix with fixed size from an arbitrary number of coefficients.
*this
.Definition at line 234 of file DiagonalMatrix.h.
|
inlineexplicit |
Constructs a DiagonalMatrix and initializes it by elements given by an initializer list of initializer lists [c++11]
Definition at line 241 of file DiagonalMatrix.h.
|
inlineexplicit |
Constructs a DiagonalMatrix from an r-value diagonal vector type.
Definition at line 246 of file DiagonalMatrix.h.
|
inline |
|
inlineexplicit |
generic constructor from expression of the diagonal coefficients
Definition at line 261 of file DiagonalMatrix.h.
|
inline |
Definition at line 206 of file DiagonalMatrix.h.
|
inline |
|
inlinestatic |
Initializes a identity matrix of size SizeAtCompileTime
Definition at line 296 of file DiagonalMatrix.h.
|
inlinestatic |
|
inline |
|
inline |
|
inline |
Sets this matrix to be the identity matrix of the current size.
Definition at line 312 of file DiagonalMatrix.h.
|
inline |
Sets this matrix to be the identity matrix of the given size.
Definition at line 315 of file DiagonalMatrix.h.
|
inline |
|
inline |
|
inlinestatic |
Initializes a diagonal matrix of size SizeAtCompileTime with coefficients set to zero
Definition at line 290 of file DiagonalMatrix.h.
|
inlinestatic |
Initializes a diagonal matrix of size dim with coefficients set to zero
Definition at line 293 of file DiagonalMatrix.h.
|
protected |
Definition at line 197 of file DiagonalMatrix.h.