Expression of a diagonal matrix.
More...
#include <DiagonalMatrix.h>
|
| DiagonalWrapper (DiagonalVectorType &a_diagonal) |
| Constructor from expression of diagonal coefficients to wrap. More...
|
|
const DiagonalVectorType & | diagonal () const |
|
const DiagonalWrapper< _DiagonalVectorType > & | derived () const |
|
DiagonalWrapper< _DiagonalVectorType > & | derived () |
|
DenseMatrixType | toDenseMatrix () const |
|
void | evalTo (MatrixBase< DenseDerived > &other) const |
|
void | addTo (MatrixBase< DenseDerived > &other) const |
|
void | subTo (MatrixBase< DenseDerived > &other) const |
|
const DiagonalVectorType & | diagonal () const |
|
DiagonalVectorType & | diagonal () |
|
Index | rows () const |
|
Index | cols () const |
|
const DiagonalProduct< MatrixDerived, DiagonalWrapper< _DiagonalVectorType >, OnTheLeft > | operator* (const MatrixBase< MatrixDerived > &matrix) const |
|
const DiagonalWrapper< const CwiseUnaryOp< internal::scalar_multiple_op< Scalar >, const DiagonalVectorType > > | operator* (const Scalar &scalar) const |
|
const DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > | inverse () const |
|
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 |
|
|
DiagonalVectorType::Nested | m_diagonal |
|
template<typename _DiagonalVectorType>
class Eigen::DiagonalWrapper< _DiagonalVectorType >
Expression of a diagonal matrix.
- Parameters
-
_DiagonalVectorType | the type of the vector of diagonal coefficients |
This class is an expression of a diagonal matrix, but not storing its own vector of diagonal coefficients, instead wrapping an existing vector expression. It is the return type of MatrixBase::asDiagonal() and most of the time this is the only way that it is used.
- See also
- class DiagonalMatrix, class DiagonalBase, MatrixBase::asDiagonal()
§ DiagonalWrapper()
template<typename _DiagonalVectorType>
Constructor from expression of diagonal coefficients to wrap.
§ diagonal()
template<typename _DiagonalVectorType>
- Returns
- a const reference to the wrapped expression of diagonal coefficients.
The documentation for this class was generated from the following file: