MCPcopy Create free account
hub / github.com/PX4/eigen / rank

Method rank

Eigen/src/SparseQR/SparseQR.h:149–153  ·  view source on GitHub ↗

\returns the number of non linearly dependent columns as determined by the pivoting threshold. * * \sa setPivotThreshold() */

Source from the content-addressed store, hash-verified

147 * \sa setPivotThreshold()
148 */
149 Index rank() const
150 {
151 eigen_assert(m_isInitialized && "The factorization should be called first, use compute()");
152 return m_nonzeropivots;
153 }
154
155 /** \returns an expression of the matrix Q as products of sparse Householder reflectors.
156 * The common usage of this function is to apply it to a dense matrix or vector

Callers 1

_solve_implMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected