TRIQS/nda 1.3.0
Multi-dimensional array library for C++
|
#include "../blas/ger.hpp"
#include "../blas/tools.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../mem/policies.hpp"
#include "../traits.hpp"
Provides a generic outer product function.
Definition in file outer_product.hpp.
Go to the source code of this file.
Functions | |
template<MemoryArray A, MemoryArray B> requires ((nda::blas::has_C_layout<A> or nda::blas::has_F_layout<A>) and nda::blas::has_C_layout<A> == nda::blas::has_C_layout<B>) | |
auto | nda::linalg::outer_product (A const &a, B const &b) |
Outer product of two arrays/views. |