57 template <Array A,
typename F,
typename R>
58 auto fold(F f, A
const &a, R r) {
62 nda::for_each(a.shape(), [&a, &res, &f](
auto &&...args) { res = f(res, a(args...)); });
67 template <Array A,
typename F>
68 auto fold(F f, A
const &a) {
88 bool any(A
const &a) {
89 static_assert(std::is_same_v<get_value_t<A>,
bool>,
"Error in nda::any: Value type of the array must be bool");
90 return fold([](
bool r,
auto const &x) ->
bool {
return r or bool(x); }, a,
false);
110 static_assert(std::is_same_v<get_value_t<A>,
bool>,
"Error in nda::all: Value type of the array must be bool");
111 return fold([](
bool r,
auto const &x) ->
bool {
return r and bool(x); }, a,
true);
126 [](
auto const &x,
auto const &y) {
145 [](
auto const &x,
auto const &y) {
160 template <ArrayOfRank<2> A>
162 return std::sqrt(
fold(
163 [](
double r,
auto const &x) ->
double {
164 auto ab = std::abs(x);
177 template <Array A,
typename Value = get_value_t<A>>
182 return fold(std::plus<>{}, a);
195 template <Array A,
typename Value = get_value_t<A>>
215 template <Array A, Array B>
217 [[nodiscard]]
constexpr auto hadamard(A &&a, B &&b) {
218 return nda::map([](
auto const &x,
auto const &y) {
return x * y; })(std::forward<A>(a), std::forward<B>(b));
231 template <
typename T,
typename U,
size_t R>
232 [[nodiscard]]
constexpr auto hadamard(std::array<T, R>
const &a, std::array<U, R>
const &b) {
245 template <
typename T,
typename U>
246 [[nodiscard]]
constexpr auto hadamard(std::vector<T>
const &a, std::vector<U>
const &b) {
247 using TU =
decltype(std::declval<T>() * std::declval<U>());
248 EXPECTS(a.size() == b.size());
250 std::vector<TU> c(a.size());
251 for (
auto i : range(c.size())) c[i] = a[i] * b[i];
Provides basic functions to create and manipulate arrays and views.
Check if a given type satisfies the array concept.
Check if a given type is either an arithmetic or complex type.
Provides concepts for the nda library.
Provides for_each functions for multi-dimensional arrays/views.
auto max_element(A const &a)
Find the maximum element of an array.
auto fold(F f, A const &a, R r)
Perform a fold operation on the given nda::Array object.
auto sum(A const &a)
Sum all the elements of an nda::Array object.
bool any(A const &a)
Does any of the elements of the array evaluate to true?
auto product(A const &a)
Multiply all the elements of an nda::Array object.
auto min_element(A const &a)
Find the minimum element of an array.
constexpr auto hadamard(A &&a, B &&b)
Hadamard product of two nda::Array objects.
bool all(A const &a)
Do all elements of the array evaluate to true?
decltype(auto) make_regular(A &&a)
Make a given object regular.
double frobenius_norm(A const &a)
Calculate the Frobenius norm of a 2-dimensional array.
mapped< F > map(F f)
Create a lazy function call expression on arrays/views.
constexpr int get_rank
Constexpr variable that specifies the rank of an nda::Array or of a contiguous 1-dimensional range.
std::decay_t< decltype(get_first_element(std::declval< A const >()))> get_value_t
Get the value type of an array/view or a scalar type.
decltype(auto) get_first_element(A const &a)
Get the first element of an array/view or simply return the scalar if a scalar is given.
__inline__ void for_each(std::array< Int, R > const &shape, F &&f)
Loop over all possible index values of a given shape and apply a function to them.
Macros used in the nda library.
Provides lazy function calls on arrays/views.
Includes the itertools header and provides some additional utilities.
Provides type traits for the nda library.