TRIQS/nda 2.0.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
nda::blas_lapack::BlasArrayCplx

#include <nda/blas/tools.hpp>

Detailed Description

BLAS/LAPACK compatible array type with complex value type.

Template Parameters
AArray type.
ROptional required rank.

Definition at line 244 of file tools.hpp.

Concept definition

template<typename A, int R = -1>
concept BlasArrayCplx = BlasArray<A, R> and AnyOf<get_value_t<A>, std::complex<float>, std::complex<double>>
Check if T is the same as any of the types in Us.
Definition concepts.hpp:119
BLAS/LAPACK compatible array type with complex value type.
Definition tools.hpp:244
BLAS/LAPACK compatible array type.
Definition tools.hpp:226