Searched refs:sparseMat (Results 1 – 2 of 2) sorted by relevance
/external/eigen/test/ |
D | sparse.h | 59 SparseMatrix<Scalar,Opt2,StorageIndex>& sparseMat, 65 sparseMat.setZero(); 67 …sparseMat.reserve(VectorXi::Constant(IsRowMajor ? refMat.rows() : refMat.cols(), int((1.5*density)… 69 for(Index j=0; j<sparseMat.outerSize(); j++) 72 for(Index i=0; i<sparseMat.innerSize(); i++) 97 sparseMat.insertByOuterInner(j,i) = v; 114 DynamicSparseMatrix<Scalar, Opt2, Index>& sparseMat, 120 sparseMat.setZero(); 121 sparseMat.reserve(int(refMat.rows()*refMat.cols()*density)); 122 for(int j=0; j<sparseMat.outerSize(); j++) [all …]
|
D | sparse_solvers.cpp | 15 SparseMatrix<Scalar>& sparseMat) in initSPD() argument 18 initSparse(density,refMat,sparseMat); in initSPD() 22 initSparse(density,aux,sparseMat,ForceNonZeroDiag); in initSPD() 25 sparseMat.setZero(); in initSPD() 26 for (int j=0 ; j<sparseMat.cols(); ++j) in initSPD() 27 for (int i=j ; i<sparseMat.rows(); ++i) in initSPD() 29 sparseMat.insert(i,j) = refMat(i,j); in initSPD() 30 sparseMat.finalize(); in initSPD()
|