Searched defs:SparseVector (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h16 * \class SparseVector
30 struct traits<SparseVector<_Scalar, _Options, _StorageIndex> >
64 class SparseVector class in namespace:Eigen
65 : public SparseCompressedBase<SparseVector<_Scalar, _Options, _StorageIndex> >
67 typedef SparseCompressedBase<SparseVector> Base;
70 EIGEN_SPARSE_PUBLIC_INTERFACE(SparseVector)
71 EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(SparseVector, +=)
72 EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(SparseVector, -=)
75 enum { IsColVector = internal::traits<SparseVector>::IsColVector };
259 inline SparseVector() function in class:Eigen::SparseVector
261 explicit inline SparseVector(Index size) : m_size(0) { check_template_parameters(); resize(size); } function in class:Eigen::SparseVector
263 inline SparseVector(Index rows, Index cols) : m_size(0) { check_template_parameters(); resize(rows,cols); } function in class:Eigen::SparseVector
266 inline SparseVector(const SparseMatrixBase<OtherDerived>& other) function in class:Eigen::SparseVector
276 inline SparseVector(const SparseVector& other) function in class:Eigen::SparseVector
[all...]
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h112 const cholmod_sparse viewAsCholmod(const SparseVector<_Scalar,_Options,_Index>& mat) argument

Completed in 332 milliseconds