HomeSort by relevance Sort by last modified time
    Searched defs:nonZeros (Results 1 - 11 of 11) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseTranspose.h 26 inline Index nonZeros() const { return derived().nestedExpression().nonZeros(); }
AmbiVector.h 39 Index nonZeros() const;
125 _Index AmbiVector<_Scalar,_Index>::nonZeros() const
MappedSparseMatrix.h 106 inline Index nonZeros() const { return m_nnz; }
SparseBlock.h 82 Index nonZeros() const;
142 // and/or it is not at the end of the nonzeros of the underlying matrix.
148 Index nnz = tmp.nonZeros();
191 matrix.innerNonZeroPtr()[m_outerStart+j] = tmp.innerVector(j).nonZeros();
198 p += tmp.innerVector(k).nonZeros();
229 Index nonZeros() const
258 eigen_assert(nonZeros()>0);
331 Index nonZeros() const
355 eigen_assert(nonZeros()>0);
SparseMatrixBase.h 158 inline Index nonZeros() const { return derived().nonZeros(); }
SparseVector.h 119 * This insertion might be very costly if the number of nonzeros above \a i is large.
135 inline Index nonZeros() const { return static_cast<Index>(m_data.size()); }
274 for (Index i=0; i<m.nonZeros(); ++i)
SparseMatrix.h 24 * space inbetween the nonzeros of two successive colmuns (resp. rows) such that insertion of new non-zero
246 inline Index nonZeros() const
489 /** Suppresses all nonzeros which are \b much \b smaller \b than \a reference under the tolerence \a epsilon */
495 /** Turns the matrix into compressed format, and suppresses all nonzeros which do not satisfy the predicate \a keep.
750 for (Index i=0; i<m.nonZeros(); ++i)
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 122 inline Index nonZeros() const {
123 return derived().nonZeros();
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 29 * decrease as the number of nonzeros per inner-vector increase. In practice, we observed very good performance
30 * till about 100 nonzeros/vector, and the performance remains relatively good till 500 nonzeros/vectors.
120 Index nonZeros() const
188 /** Suppress all nonzeros which are smaller than \a reference under the tolerence \a epsilon */
RandomSetter.h 124 * To reach optimal performance, this value should be adjusted according to the average number of nonzeros
216 mp_target->reserve(nonZeros());
308 Index nonZeros() const
  /external/eigen/Eigen/src/Core/
DenseBase.h 185 inline Index nonZeros() const { return size(); }

Completed in 355 milliseconds