Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
More...
|
Index | cols () const |
|
internal::remove_reference< MatrixTypeNested >::type & | matrix () |
|
const _MatrixTypeNested & | matrix () const |
|
template<typename OtherDerived > |
Product< SparseSelfAdjointView, OtherDerived > | operator* (const MatrixBase< OtherDerived > &rhs) const |
|
template<typename OtherDerived > |
Product< SparseSelfAdjointView, OtherDerived > | operator* (const SparseMatrixBase< OtherDerived > &rhs) const |
|
SparseSelfAdjointView & | operator= (const SparseSelfAdjointView &src) |
|
template<typename SrcMatrixType , unsigned int SrcMode> |
SparseSelfAdjointView & | operator= (const SparseSelfAdjointView< SrcMatrixType, SrcMode > &src) |
|
template<typename SrcMatrixType , int SrcMode> |
SparseSelfAdjointView & | operator= (const SparseSymmetricPermutationProduct< SrcMatrixType, SrcMode > &permutedMatrix) |
|
template<typename DerivedU > |
SparseSelfAdjointView< MatrixType, Mode > & | rankUpdate (const SparseMatrixBase< DerivedU > &u, const Scalar &alpha) |
|
template<typename DerivedU > |
SparseSelfAdjointView & | rankUpdate (const SparseMatrixBase< DerivedU > &u, const Scalar &alpha=Scalar(1)) |
|
void | resize (Index rows, Index cols) |
|
Index | rows () const |
|
| SparseSelfAdjointView (MatrixType &matrix) |
|
SparseSymmetricPermutationProduct< _MatrixTypeNested, Mode > | twistedBy (const PermutationMatrix< Dynamic, Dynamic, StorageIndex > &perm) const |
|
EIGEN_DEVICE_FUNC void | addTo (Dest &dst) const |
|
EIGEN_DEVICE_FUNC void | applyThisOnTheLeft (Dest &dst) const |
|
EIGEN_DEVICE_FUNC void | applyThisOnTheRight (Dest &dst) const |
|
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
|
EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, _Mode > & | const_cast_derived () const |
|
const EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, _Mode > & | const_derived () const |
|
EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, _Mode > & | derived () |
|
const EIGEN_DEVICE_FUNC SparseSelfAdjointView< MatrixType, _Mode > & | derived () const |
|
EIGEN_DEVICE_FUNC void | evalTo (Dest &dst) const |
|
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
|
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
|
EIGEN_DEVICE_FUNC void | subTo (Dest &dst) 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()
Definition at line 43 of file SparseSelfAdjointView.h.