5 #ifndef COTILA_VECTOR_MATH_H_ 6 #define COTILA_VECTOR_MATH_H_ 8 #include <cotila/detail/type_traits.h> 9 #include <cotila/vector/utility.h> 26 template <
typename T, std::
size_t N>
37 template <
typename T, std::
size_t N>
49 template <
typename T, std::
size_t N>
61 template <
typename T, std::
size_t N>
72 template <
typename T, std::
size_t N>
85 template <
typename T, std::
size_t N>
88 for (std::size_t i = 0; i < vector<T, N>::size; ++i)
89 r += a[i] *
conj(b[i]);
100 return accumulate(v, static_cast<T>(0), std::plus<T>());
131 template <
typename T, std::
size_t N>
134 std::size_t index = 0;
135 for (std::size_t i = 0; i < vector<T, N>::size; ++i)
150 template <
typename T, std::
size_t N>
153 std::size_t index = 0;
154 for (std::size_t i = 0; i < vector<T, N>::size; ++i)
166 #endif // COTILA_VECTOR_MATH_H_ constexpr vector< detail::remove_complex_t< T >, N > abs(const vector< T, N > &v)
computes the elementwise absolute value
Definition: math.h:73
constexpr std::size_t min_index(const vector< T, N > &v)
computes the index of the minimum valued element
Definition: math.h:132
constexpr U accumulate(const vector< T, N > &v, U init, F &&f)
accumulates an operation across a vector
Definition: utility.h:43
constexpr T max(const vector< T, N > &v)
computes the maximum valued element
Definition: math.h:119
constexpr vector< detail::remove_complex_t< T >, N > real(const vector< T, N > &v)
computes the elementwise real
Definition: math.h:50
A container representing a vector.
Definition: vector.h:25
constexpr T dot(const vector< T, N > &a, const vector< T, N > &b)
computes the dot product
Definition: math.h:86
constexpr std::size_t max_index(const vector< T, N > &v)
computes the index of the maximum valued element
Definition: math.h:151
constexpr T min(const vector< T, N > &v)
computes the minimum valued element
Definition: math.h:109
Contains the definition of the cotila::vector class.
constexpr vector< detail::remove_complex_t< T >, N > imag(const vector< T, N > &v)
computes the elementwise imag
Definition: math.h:62
constexpr vector< T, N > sqrt(const vector< T, N > &v)
computes the elementwise square root
Definition: math.h:38
constexpr matrix< U, N, M > elementwise(F f, const matrix< T, N, M > &m, const Matrices &... matrices)
applies a function elementwise between many matrices
Definition: utility.h:28
Mathematical operations on scalar values.
constexpr T sum(const vector< T, N > &v)
computes the sum of elements
Definition: math.h:99
constexpr vector< T, N > conj(const vector< T, N > &v)
computes the elementwise complex conjugate
Definition: math.h:27