numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::base::concepts::eigen_solver_of Concept Reference

Concept of Eigen's solvers of linear equations. More...

#include <num_collect/base/concepts/eigen_solver_of.h>

Concept definition

template<typename T, typename Matrix, typename Vector>
T& solver, const Matrix& coeff, const Vector& right, Vector& solution) {
solver.compute(coeff);
solution = solver.solve(right);
}
Concept of Eigen's solvers of linear equations.

Detailed Description

Concept of Eigen's solvers of linear equations.

Template Parameters
TType.
MatrixType of matrices.
VectorType of vectors.

Definition at line 34 of file eigen_solver_of.h.