Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
More...
|
| | SparseSelfAdjointView (MatrixType &matrix) |
| |
| Index | rows () const |
| |
| Index | cols () const |
| |
| const MatrixTypeNested_ & | matrix () const |
| |
| std::remove_reference_t< MatrixTypeNested > & | matrix () |
| |
| template<typename OtherDerived > |
| Product< SparseSelfAdjointView, OtherDerived > | operator* (const SparseMatrixBase< OtherDerived > &rhs) const |
| |
| template<typename OtherDerived > |
| Product< SparseSelfAdjointView, OtherDerived > | operator* (const MatrixBase< OtherDerived > &rhs) const |
| |
| template<typename DerivedU > |
| SparseSelfAdjointView & | rankUpdate (const SparseMatrixBase< DerivedU > &u, const Scalar &alpha=Scalar(1)) |
| |
| SparseSymmetricPermutationProduct< MatrixTypeNested_, Mode > | twistedBy (const PermutationMatrix< Dynamic, Dynamic, StorageIndex > &perm) const |
| |
| template<typename SrcMatrixType , int SrcMode> |
| SparseSelfAdjointView & | operator= (const SparseSymmetricPermutationProduct< SrcMatrixType, SrcMode > &permutedMatrix) |
| |
| SparseSelfAdjointView & | operator= (const SparseSelfAdjointView &src) |
| |
| template<typename SrcMatrixType , unsigned int SrcMode> |
| SparseSelfAdjointView & | operator= (const SparseSelfAdjointView< SrcMatrixType, SrcMode > &src) |
| |
| void | resize (Index rows, Index cols) |
| |
| template<typename DerivedU > |
| SparseSelfAdjointView< MatrixType, Mode > & | rankUpdate (const SparseMatrixBase< DerivedU > &u, const Scalar &alpha) |
| |
| constexpr EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, Mode_ > & | derived () |
| |
| constexpr EIGEN_DEVICE_FUNC const SparseSelfAdjointView< MatrixType, Mode_ > & | derived () const |
| |
| EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, Mode_ > & | const_cast_derived () const |
| |
| EIGEN_DEVICE_FUNC const SparseSelfAdjointView< MatrixType, Mode_ > & | const_derived () const |
| |
| EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
| |
| EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
| |
| EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
| |
| EIGEN_DEVICE_FUNC void | evalTo (Dest &dst) const |
| |
| EIGEN_DEVICE_FUNC void | addTo (Dest &dst) const |
| |
| EIGEN_DEVICE_FUNC void | subTo (Dest &dst) const |
| |
| EIGEN_DEVICE_FUNC void | applyThisOnTheRight (Dest &dst) const |
| |
| EIGEN_DEVICE_FUNC void | applyThisOnTheLeft (Dest &dst) const |
| |
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE DeviceWrapper< SparseSelfAdjointView< MatrixType, Mode_ >, Device > | device (Device &device) |
| |
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE DeviceWrapper< const SparseSelfAdjointView< MatrixType, Mode_ >, Device > | device (Device &device) const |
| |
template<typename MatrixType, unsigned int Mode_>
class Eigen::SparseSelfAdjointView< MatrixType, Mode_ >
Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
- Parameters
-
| MatrixType | the type of the dense matrix storing the coefficients |
| Mode | can be either Lower or Upper |
This class is an expression of a sefladjoint matrix from a triangular part of a matrix with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView() and most of the time this is the only way that it is used.
- See also
- SparseMatrixBase::selfadjointView()