Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
| MatrixType | the type of the dense matrix storing the coefficients |
| UpLo | 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.

Public Types | |
| typedef MatrixType::Scalar | Scalar |
| typedef MatrixType::Index | Index |
| typedef Matrix< Index, Dynamic, 1 > | VectorI |
| typedef MatrixType::Nested | MatrixTypeNested |
| typedef internal::remove_all < MatrixTypeNested >::type | _MatrixTypeNested |
| typedef internal::traits < Derived >::StorageKind | StorageKind |
Public Member Functions | |
| SparseSelfAdjointView (const MatrixType &matrix) | |
| Index | rows () const |
| Index | cols () const |
| const _MatrixTypeNested & | matrix () const |
| _MatrixTypeNested & | matrix () |
| template<typename OtherDerived > | |
| SparseSelfAdjointTimeDenseProduct < MatrixType, OtherDerived, UpLo > | operator* (const MatrixBase< OtherDerived > &rhs) const |
| Efficient sparse self-adjoint matrix times dense vector/matrix product. | |
| template<typename DerivedU > | |
| SparseSelfAdjointView & | rankUpdate (const SparseMatrixBase< DerivedU > &u, Scalar alpha=Scalar(1)) |
Perform a symmetric rank K update of the selfadjoint matrix *this: where u is a vector or matrix. | |
| template<typename DestScalar > | |
| void | evalTo (SparseMatrix< DestScalar, ColMajor, Index > &_dest) const |
| template<typename DestScalar > | |
| void | evalTo (DynamicSparseMatrix< DestScalar, ColMajor, Index > &_dest) const |
| SparseSymmetricPermutationProduct < _MatrixTypeNested, UpLo > | twistedBy (const PermutationMatrix< Dynamic, Dynamic, Index > &perm) const |
| template<typename SrcMatrixType , int SrcUpLo> | |
| SparseSelfAdjointView & | operator= (const SparseSymmetricPermutationProduct< SrcMatrixType, SrcUpLo > &permutedMatrix) |
| Derived & | derived () |
| const Derived & | derived () const |
| Derived & | const_cast_derived () const |
| const Derived & | const_derived () const |
| Index | size () const |
| void | evalTo (Dest &dst) const |
| void | addTo (Dest &dst) const |
| void | subTo (Dest &dst) const |
| void | applyThisOnTheRight (Dest &dst) const |
| void | applyThisOnTheLeft (Dest &dst) const |
Protected Attributes | |
| const MatrixType::Nested | m_matrix |
| VectorI | m_countPerRow |
| VectorI | m_countPerCol |
Friends | |
| template<typename OtherDerived > | |
| DenseTimeSparseSelfAdjointProduct < OtherDerived, MatrixType, UpLo > | operator* (const MatrixBase< OtherDerived > &lhs, const SparseSelfAdjointView &rhs) |
| Efficient dense vector/matrix times sparse self-adjoint matrix product. | |
| typedef MatrixType::Index Eigen::SparseSelfAdjointView::Index |
Reimplemented from Eigen::EigenBase< SparseSelfAdjointView< MatrixType, UpLo > >.
| typedef MatrixType::Nested Eigen::SparseSelfAdjointView::MatrixTypeNested |
| typedef MatrixType::Scalar Eigen::SparseSelfAdjointView::Scalar |
typedef internal::traits<Derived>::StorageKind Eigen::EigenBase::StorageKind [inherited] |
| typedef Matrix<Index,Dynamic,1> Eigen::SparseSelfAdjointView::VectorI |
| Eigen::SparseSelfAdjointView::SparseSelfAdjointView | ( | const MatrixType & | matrix | ) | [inline] |
| void Eigen::EigenBase::addTo | ( | Dest & | dst | ) | const [inline, inherited] |
| void Eigen::EigenBase::applyThisOnTheLeft | ( | Dest & | dst | ) | const [inline, inherited] |
| void Eigen::EigenBase::applyThisOnTheRight | ( | Dest & | dst | ) | const [inline, inherited] |
| Index Eigen::SparseSelfAdjointView::cols | ( | void | ) | const [inline] |
Reimplemented from Eigen::EigenBase< SparseSelfAdjointView< MatrixType, UpLo > >.
| Derived& Eigen::EigenBase::const_cast_derived | ( | ) | const [inline, inherited] |
| const Derived& Eigen::EigenBase::const_derived | ( | ) | const [inline, inherited] |
| Derived& Eigen::EigenBase::derived | ( | ) | [inline, inherited] |
| const Derived& Eigen::EigenBase::derived | ( | ) | const [inline, inherited] |
| void Eigen::EigenBase::evalTo | ( | Dest & | dst | ) | const [inline, inherited] |
| void Eigen::SparseSelfAdjointView::evalTo | ( | SparseMatrix< DestScalar, ColMajor, Index > & | _dest | ) | const [inline] |
| void Eigen::SparseSelfAdjointView::evalTo | ( | DynamicSparseMatrix< DestScalar, ColMajor, Index > & | _dest | ) | const [inline] |
| const _MatrixTypeNested& Eigen::SparseSelfAdjointView::matrix | ( | ) | const [inline] |
| _MatrixTypeNested& Eigen::SparseSelfAdjointView::matrix | ( | ) | [inline] |
| SparseSelfAdjointTimeDenseProduct<MatrixType,OtherDerived,UpLo> Eigen::SparseSelfAdjointView::operator* | ( | const MatrixBase< OtherDerived > & | rhs | ) | const [inline] |
| SparseSelfAdjointView& Eigen::SparseSelfAdjointView::operator= | ( | const SparseSymmetricPermutationProduct< SrcMatrixType, SrcUpLo > & | permutedMatrix | ) | [inline] |
| SparseSelfAdjointView< MatrixType, UpLo > & Eigen::SparseSelfAdjointView::rankUpdate | ( | const SparseMatrixBase< DerivedU > & | u, |
| Scalar | alpha = Scalar(1) |
||
| ) |
| Index Eigen::SparseSelfAdjointView::rows | ( | void | ) | const [inline] |
Reimplemented from Eigen::EigenBase< SparseSelfAdjointView< MatrixType, UpLo > >.
| Index Eigen::EigenBase::size | ( | ) | const [inline, inherited] |
| void Eigen::EigenBase::subTo | ( | Dest & | dst | ) | const [inline, inherited] |
| SparseSymmetricPermutationProduct<_MatrixTypeNested,UpLo> Eigen::SparseSelfAdjointView::twistedBy | ( | const PermutationMatrix< Dynamic, Dynamic, Index > & | perm | ) | const [inline] |
| DenseTimeSparseSelfAdjointProduct<OtherDerived,MatrixType,UpLo> operator* | ( | const MatrixBase< OtherDerived > & | lhs, |
| const SparseSelfAdjointView & | rhs | ||
| ) | [friend] |
VectorI Eigen::SparseSelfAdjointView::m_countPerCol [mutable, protected] |
VectorI Eigen::SparseSelfAdjointView::m_countPerRow [mutable, protected] |
const MatrixType::Nested Eigen::SparseSelfAdjointView::m_matrix [protected] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |