Home
last modified time | relevance | path

Searched refs:SparseVector (Results 1 – 14 of 14) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseVector.h30 struct traits<SparseVector<_Scalar, _Options, _Index> >
65 class SparseVector
66 : public SparseMatrixBase<SparseVector<_Scalar, _Options, _Index> >
68 typedef SparseMatrixBase<SparseVector> SparseBase;
71 EIGEN_SPARSE_PUBLIC_INTERFACE(SparseVector)
72 EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(SparseVector, +=)
73 EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(SparseVector, -=)
76 enum { IsColVector = internal::traits<SparseVector>::IsColVector };
210 inline SparseVector() : m_size(0) { check_template_parameters(); resize(0); }
212 inline SparseVector(Index size) : m_size(0) { check_template_parameters(); resize(size); }
[all …]
DSparseRedux.h36 typename internal::traits<SparseVector<_Scalar,_Options, _Index> >::Scalar
37 SparseVector<_Scalar,_Options,_Index>::sum() const in sum()
DSparseUtil.h73 template<typename _Scalar, int _Flags = 0, typename _Index = int> class SparseVector; variable
105 typedef SparseVector<_Scalar, RowMajor, _Index> type;
112 typedef SparseVector<_Scalar, ColMajor, _Index> type;
/external/eigen/unsupported/Eigen/src/SparseExtra/
DDynamicSparseMatrix.h324 class DynamicSparseMatrix<Scalar,_Options,_Index>::InnerIterator : public SparseVector<Scalar,_Opti…
326 typedef typename SparseVector<Scalar,_Options,_Index>::InnerIterator Base;
340 class DynamicSparseMatrix<Scalar,_Options,_Index>::ReverseInnerIterator : public SparseVector<Scala…
342 typedef typename SparseVector<Scalar,_Options,_Index>::ReverseInnerIterator Base;
DBlockOfDynamicSparseMatrix.h74 SparseVector<Scalar,IsRowMajor ? RowMajorBit : 0> aux(other.innerVector(j));
/external/eigen/test/
Dsparse.h160 SparseVector<Scalar,Options,Index>& sparseVec,
184 SparseVector<Scalar,Options,Index>& sparseVec,
Dsparse_vector.cpp18 typedef SparseVector<Scalar,0,Index> SparseVectorType; in sparse_vector()
Dsparse_product.cpp52 typedef SparseVector<Scalar,0,Index> ColSpVector; in sparse_product()
53 typedef SparseVector<Scalar,RowMajor,Index> RowSpVector; in sparse_product()
/external/eigen/doc/
DTutorialSparse.dox11 …<td>\code#include <Eigen/SparseCore>\endcode</td><td>SparseMatrix and SparseVector classes, matrix…
80 A SparseVector is a special case of a SparseMatrix where only the \c Values and \c InnerIndices arr…
81 There is no notion of compressed/uncompressed mode for a SparseVector.
117 The SparseMatrix and SparseVector classes take three template arguments:
128 SparseVector<std::complex<float> > vec(1000); // declares a column sparse vector of co…
129 SparseVector<double,RowMajor> vec(1000); // declares a row sparse vector of doubl…
175 SparseVector<double> vec(size);
176 for (SparseVector<double>::InnerIterator it(vec); it; ++it)
DPreprocessorDirectives.dox97 - \b EIGEN_SPARSEVECTOR_PLUGIN - filename of plugin for extending the SparseVector class.
DQuickReference.dox24 …torage and related basic linear algebra (SparseMatrix, DynamicSparseMatrix, SparseVector)</td></tr>
/external/eigen/Eigen/
DSparseCore42 #include "src/SparseCore/SparseVector.h"
/external/eigen/test/eigen2/
Deigen2_sparse_vector.cpp18 typedef SparseVector<Scalar> SparseVectorType; in sparse_vector()
Dsparse.h133 SparseVector<Scalar>& sparseVec,