Home
last modified time | relevance | path

Searched refs:sparseMat (Results 1 – 2 of 2) sorted by relevance

/external/eigen/test/
Dsparse.h59 SparseMatrix<Scalar,Opt2,StorageIndex>& sparseMat,
65 sparseMat.setZero();
67sparseMat.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 …]
Dsparse_solvers.cpp15 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()