Go to the documentation of this file.
11 #ifndef EIGEN_DIAGONALMATRIX_H
12 #define EIGEN_DIAGONALMATRIX_H
16 #ifndef EIGEN_PARSED_BY_DOXYGEN
17 template<
typename Derived>
41 inline const Derived&
derived()
const {
return *
static_cast<const Derived*
>(
this); }
43 inline Derived&
derived() {
return *
static_cast<Derived*
>(
this); }
58 template<
typename MatrixDerived>
104 template<
typename _Scalar,
int SizeAtCompileTime,
int MaxSizeAtCompileTime>
106 :
traits<Matrix<_Scalar,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtCompileTime> >
115 template<
typename _Scalar,
int SizeAtCompileTime,
int MaxSizeAtCompileTime>
117 :
public DiagonalBase<DiagonalMatrix<_Scalar,SizeAtCompileTime,MaxSizeAtCompileTime> >
120 #ifndef EIGEN_PARSED_BY_DOXYGEN
158 template<
typename OtherDerived>
162 #ifndef EIGEN_PARSED_BY_DOXYGEN
168 template<
typename OtherDerived>
174 template<
typename OtherDerived>
182 #ifndef EIGEN_PARSED_BY_DOXYGEN
226 template<
typename _DiagonalVectorType>
235 RowsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
236 ColsAtCompileTime = DiagonalVectorType::SizeAtCompileTime,
237 MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
238 MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime,
244 template<
typename _DiagonalVectorType>
249 #ifndef EIGEN_PARSED_BY_DOXYGEN
275 template<
typename Derived>
290 template<
typename Derived>
293 if(cols() != rows())
return false;
295 for(
Index j = 0; j < cols(); ++j)
298 if(absOnDiagonal > maxAbsOnDiagonal) maxAbsOnDiagonal = absOnDiagonal;
300 for(
Index j = 0; j < cols(); ++j)
301 for(
Index i = 0; i < j; ++i)
318 template<
typename DstXprType,
typename SrcXprType,
typename Functor>
323 Index dstRows = src.rows();
324 Index dstCols = src.cols();
325 if((dst.rows()!=dstRows) || (dst.cols()!=dstCols))
326 dst.resize(dstRows, dstCols);
329 dst.diagonal() = src.diagonal();
333 { dst.diagonal() += src.diagonal(); }
336 { dst.diagonal() -= src.diagonal(); }
343 #endif // EIGEN_DIAGONALMATRIX_H
DiagonalMatrix< Scalar, DiagonalVectorType::SizeAtCompileTime, DiagonalVectorType::MaxSizeAtCompileTime > PlainObject
DenseMatrixType DenseType
_DiagonalVectorType DiagonalVectorType
DiagonalVectorType::Scalar Scalar
Represents a diagonal matrix with its storage.
EIGEN_DEVICE_FUNC Index cols() const
DiagonalVectorType::Scalar Scalar
EIGEN_DEVICE_FUNC DenseMatrixType toDenseMatrix() const
Eigen::Index Index
The interface type of indices.
EIGEN_DEVICE_FUNC const friend DiagonalWrapper< const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(Scalar, DiagonalVectorType, product) > operator*(const Scalar &scalar, const DiagonalBase &other)
EIGEN_DEVICE_FUNC Index rows() const
NumTraits< Scalar >::Real RealScalar
EIGEN_DEVICE_FUNC DiagonalMatrix()
DiagonalShape StorageKind
EIGEN_DEVICE_FUNC bool isMuchSmallerThan(const Scalar &x, const OtherScalar &y, const typename NumTraits< Scalar >::Real &precision=NumTraits< Scalar >::dummy_precision())
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
EIGEN_DEVICE_FUNC DiagonalMatrix(const Scalar &x, const Scalar &y)
EIGEN_DEVICE_FUNC Index size() const
const EIGEN_DEVICE_FUNC Derived & derived() const
EIGEN_DEVICE_FUNC DiagonalMatrix(Index dim)
EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal()
EIGEN_DEVICE_FUNC void setIdentity(Index size)
const EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal() const
NumTraits< Scalar >::Real RealScalar
Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime, 0, MaxRowsAtCompileTime, MaxColsAtCompileTime > DenseMatrixType
internal::traits< Derived >::StorageIndex StorageIndex
EIGEN_DEVICE_FUNC void resize(Index size)
bool isDiagonal(const RealScalar &prec=NumTraits< Scalar >::dummy_precision()) const
const unsigned int LvalueBit
internal::traits< Derived >::StorageKind StorageKind
internal::traits< DiagonalMatrix >::StorageKind StorageKind
const EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal() const
internal::traits< DiagonalMatrix >::StorageIndex StorageIndex
_DiagonalVectorType DiagonalVectorType
DiagonalVectorType::Nested m_diagonal
Expression of the product of two arbitrary matrices or vectors.
const EIGEN_DEVICE_FUNC CwiseInverseReturnType cwiseInverse() const
const EIGEN_DEVICE_FUNC DiagonalWrapper< const Derived > asDiagonal() const
internal::traits< Derived >::DiagonalVectorType DiagonalVectorType
EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal()
Matrix< _Scalar, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1 > DiagonalVectorType
EIGEN_DEVICE_FUNC DiagonalMatrix & operator=(const DiagonalBase< OtherDerived > &other)
Expression of a diagonal matrix.
const EIGEN_DEVICE_FUNC InverseReturnType inverse() const
DiagonalVectorType::RealScalar RealScalar
DiagonalVectorType m_diagonal
EIGEN_DEVICE_FUNC DiagonalMatrix & operator=(const DiagonalMatrix &other)
DiagonalWrapper< const CwiseUnaryOp< internal::scalar_inverse_op< Scalar >, const DiagonalVectorType > > InverseReturnType
static void run(DstXprType &dst, const SrcXprType &src, const internal::add_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
EIGEN_DEVICE_FUNC DiagonalWrapper(DiagonalVectorType &a_diagonal)
DiagonalShape StorageKind
internal::traits< DiagonalMatrix >::DiagonalVectorType DiagonalVectorType
const EIGEN_DEVICE_FUNC Product< Derived, MatrixDerived, LazyProduct > operator*(const MatrixBase< MatrixDerived > &matrix) const
const typedef DiagonalMatrix & Nested
const EIGEN_DEVICE_FUNC DiagonalVectorType & diagonal() const
DiagonalVectorType::StorageIndex StorageIndex
static void run(DstXprType &dst, const SrcXprType &src, const internal::assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
DiagonalMatrix(const DiagonalMatrix &other)
The matrix class, also used for vectors and row-vectors.
const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(typename Derived::Scalar, Derived, pow) pow(const typename Derived
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE internal::enable_if< NumTraits< T >::IsSigned||NumTraits< T >::IsComplex, typename NumTraits< T >::Real >::type abs(const T &x)
Base class for all dense matrices, vectors, and expressions.
static void run(DstXprType &dst, const SrcXprType &src, const internal::sub_assign_op< typename DstXprType::Scalar, typename SrcXprType::Scalar > &)
EIGEN_DEVICE_FUNC DiagonalMatrix(const DiagonalBase< OtherDerived > &other)
const unsigned int NoPreferredStorageOrderBit
EIGEN_DEVICE_FUNC DiagonalMatrix(const Scalar &x, const Scalar &y, const Scalar &z)
traits< DiagonalVectorType >::XprKind XprKind
EIGEN_DEVICE_FUNC void setZero(Index size)
EIGEN_DEVICE_FUNC void setIdentity()
const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived, typename Derived::Scalar, pow) pow(const Eigen
EIGEN_DEVICE_FUNC DiagonalMatrix(const MatrixBase< OtherDerived > &other)
const EIGEN_DEVICE_FUNC DiagonalWrapper< const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DiagonalVectorType, Scalar, product) > operator*(const Scalar &scalar) const
EIGEN_DEVICE_FUNC void setZero()
EIGEN_DEVICE_FUNC Derived & derived()
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:45