Function Dune::XT::LA::solve

template<class M, class V, class ...Args>
void Dune::XT::LA::solve(const M &A, const V &b, V &x, Args&&... args)

Solves A*x = b in-place for x using the default (or given) solver options.

template<class M, class V, class S>
typename VectorInterface<V, S>::derived_type Dune::XT::LA::solve(const MatrixInterface<M, S> &A, const VectorInterface<V, S> &b, const Common::Configuration &opts = <recovery-expr>())

Solves A*x = b and returns the solution vector x, using the given solver options.