TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
solve.hpp
#include "../basic_array.hpp"
#include "../blas/tools.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../exceptions.hpp"
#include "../lapack/getrf.hpp"
#include "../lapack/getrs.hpp"
#include "../layout/policies.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../mem/policies.hpp"
#include "../traits.hpp"
#include <type_traits>

Detailed Description

Provides functions to solve linear systems of equations.

Definition in file solve.hpp.

Go to the source code of this file.

Functions

template<Matrix A, Array B>
requires (have_same_value_type_v<A, B> and nda::mem::have_compatible_addr_space<A, B> and is_blas_lapack_v<get_value_t<A>>)
auto nda::linalg::solve (A const &a, B const &b)
 Solve a system of linear equations.
template<MemoryMatrix A, MemoryArray B>
requires (have_same_value_type_v<A, B> and nda::mem::have_compatible_addr_space<A, B> and is_blas_lapack_v<get_value_t<A>>)
void nda::linalg::solve_in_place (A &&a, B &&b)
 Solve a system of linear equations in-place.