Home
last modified time | relevance | path

Searched refs:tempVector (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DTriangularSolver.h219 AmbiVector<Scalar,StorageIndex> tempVector(other.rows()*2);
220 tempVector.setBounds(0,other.rows());
228 tempVector.init(.99/*float(other.col(col).nonZeros())/float(other.rows())*/);
229 tempVector.setZero();
230 tempVector.restart();
233 tempVector.coeffRef(rhsIt.index()) = rhsIt.value();
240 tempVector.restart();
241 Scalar& ci = tempVector.coeffRef(i);
256 tempVector.restart();
262 tempVector.coeffRef(it.index()) -= ci * it.value();
[all …]
DSparseSparseProductWithPruning.h34 AmbiVector<Scalar,StorageIndex> tempVector(rows); in sparse_sparse_product_with_pruning_impl()
60 tempVector.init(ratioColRes); in sparse_sparse_product_with_pruning_impl()
61 tempVector.setZero(); in sparse_sparse_product_with_pruning_impl()
65 tempVector.restart(); in sparse_sparse_product_with_pruning_impl()
69 tempVector.coeffRef(lhsIt.index()) += lhsIt.value() * x; in sparse_sparse_product_with_pruning_impl()
73 for (typename AmbiVector<Scalar,StorageIndex>::Iterator it(tempVector,tolerance); it; ++it) in sparse_sparse_product_with_pruning_impl()
/external/eigen/Eigen/src/QR/
DHouseholderQR.h267 TempType tempVector; variable
270 tempVector.resize(cols);
271 tempData = tempVector.data();
307 TempType tempVector; member
310 tempVector.resize(cols);
311 tempData = tempVector.data();
/external/eigen/Eigen/src/SVD/
DUpperBidiagonalization.h104 TempType tempVector; variable
107 tempVector.resize(rows);
108 tempData = tempVector.data();