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

Method solve

Eigen/src/SparseCore/SparseSolverBase.h:87–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85 */
86 template<typename Rhs>
87 inline const Solve<Derived, Rhs>
88 solve(const MatrixBase<Rhs>& b) const
89 {
90 eigen_assert(m_isInitialized && "Solver is not initialized.");
91 eigen_assert(derived().rows()==b.rows() && "solve(): invalid number of rows of the right hand side matrix b");
92 return Solve<Derived, Rhs>(derived(), b.derived());
93 }
94
95 /** \returns an expression of the solution x of \f$ A x = b \f$ using the current decomposition of A.
96 *

Callers 1

Calls 1

rowsMethod · 0.45

Tested by

no test coverage detected