TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
geev.hpp
#include "./interface/cxx_interface.hpp"
#include "../basic_array.hpp"
#include "../basic_functions.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../traits.hpp"
#include <cmath>
#include <complex>
#include <concepts>

Detailed Description

Provides a generic interface to the LAPACK geev routine.

Definition in file geev.hpp.

Go to the source code of this file.

Functions

template<MemoryMatrix A, MemoryVector W, MemoryMatrix VL, MemoryMatrix VR>
requires (mem::have_host_compatible_addr_space<A, W, VL, VR> and std::same_as<std::complex<double>, get_value_t<A>> and have_same_value_type_v<A, W, VL, VR>)
int nda::lapack::geev (A &&a, W &&w, VL &&vl, VR &&vr, char jobvl='N', char jobvr='V')
 Interface to the LAPACK geev routine for complex matrices.
template<MemoryMatrix A, MemoryVector WR, MemoryVector WI, MemoryMatrix VL, MemoryMatrix VR>
requires (mem::have_host_compatible_addr_space<A, WR, WI, VL, VR> and std::same_as<double, get_value_t<A>> and have_same_value_type_v<A, WR, WI, VL, VR>)
int nda::lapack::geev (A &&a, WR &&wr, WI &&wi, VL &&vl, VR &&vr, char jobvl='N', char jobvr='V')
 Interface to the LAPACK geev routine for real matrices.