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

Method compute

Eigen/src/SparseLU/SparseLU.h:124–130  ·  view source on GitHub ↗

* Compute the symbolic and numeric factorization of the input sparse matrix. * The input matrix should be in column-major storage. */

Source from the content-addressed store, hash-verified

122 * The input matrix should be in column-major storage.
123 */
124 void compute (const MatrixType& matrix)
125 {
126 // Analyze
127 analyzePattern(matrix);
128 //Factorize
129 factorize(matrix);
130 }
131
132 inline Index rows() const { return m_mat.rows(); }
133 inline Index cols() const { return m_mat.cols(); }

Callers 6

runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected