68 template <Array A,
typename F,
typename R>
69 auto fold(F f, A
const &a, R r) {
73 nda::for_each(a.shape(), [&a, &res, &f](
auto &&...args) { res = f(res, a(args...)); });
78 template <Array A,
typename F>
79 auto fold(F f, A
const &a) {
99 bool any(A
const &a) {
100 static_assert(std::is_same_v<get_value_t<A>,
bool>,
"Error in nda::any: Value type of the array must be bool");
101 return fold([](
bool r,
auto const &x) ->
bool {
return r or bool(x); }, a,
false);
121 static_assert(std::is_same_v<get_value_t<A>,
bool>,
"Error in nda::all: Value type of the array must be bool");
122 return fold([](
bool r,
auto const &x) ->
bool {
return r and bool(x); }, a,
true);
137 [](
auto const &x,
auto const &y) {
156 [](
auto const &x,
auto const &y) {
171 template <ArrayOfRank<2> A>
173 return std::sqrt(
fold(
174 [](
double r,
auto const &x) ->
double {
175 auto ab = std::abs(x);
188 template <Array A,
typename Value = get_value_t<A>>
193 return fold(std::plus<>{}, a);
206 template <Array A,
typename Value = get_value_t<A>>
226 template <Array A, Array B>
228 [[nodiscard]]
constexpr auto hadamard(A &&a, B &&b) {
229 return nda::map([](
auto const &x,
auto const &y) {
return x * y; })(std::forward<A>(a), std::forward<B>(b));
242 template <
typename T,
typename U,
size_t R>
243 [[nodiscard]]
constexpr auto hadamard(std::array<T, R>
const &a, std::array<U, R>
const &b) {
256 template <
typename T,
typename U>
257 [[nodiscard]]
constexpr auto hadamard(std::vector<T>
const &a, std::vector<U>
const &b) {
258 using TU =
decltype(std::declval<T>() * std::declval<U>());
259 EXPECTS(a.size() == b.size());
261 std::vector<TU> c(a.size());
262 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.