Lines Matching refs:EigenSparseMatrix
25 typedef SparseMatrix<Scalar> EigenSparseMatrix; typedef
27 void fillMatrix(float density, int rows, int cols, EigenSparseMatrix& dst) in fillMatrix()
42 void fillMatrix2(int nnzPerCol, int rows, int cols, EigenSparseMatrix& dst) in fillMatrix2()
62 void eiToDense(const EigenSparseMatrix& src, DenseMatrix& dst) in eiToDense()
66 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToDense()
74 void eiToGmm(const EigenSparseMatrix& src, GmmSparse& dst) in eiToGmm()
78 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToGmm()
88 void eiToMtl(const EigenSparseMatrix& src, MtlSparse& dst) in eiToMtl()
92 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToMtl()
101 void eiToCSparse(const EigenSparseMatrix& src, cs* &dst) in eiToCSparse()
105 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToCSparse()
128 void eiToUblas(const EigenSparseMatrix& src, UBlasSparse& dst) in eiToUblas()
132 for (EigenSparseMatrix::InnerIterator it(src.derived(), j); it; ++it) in eiToUblas()