Lines Matching refs:sparseMat
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++)
124 sparseMat.startVec(j); // not needed for DynamicSparseMatrix
125 for(int i=0; i<sparseMat.innerSize(); i++)
146 sparseMat.insertBackByOuterInner(j,i) = v;
157 sparseMat.finalize();