cotila  1.2.1
A compile time linear algebra system
math.h
Go to the documentation of this file.
1 
5 #ifndef COTILA_VECTOR_MATH_H_
6 #define COTILA_VECTOR_MATH_H_
7 
8 #include <cotila/detail/type_traits.h>
9 #include <cotila/vector/utility.h>
10 #include <cotila/vector/vector.h>
11 #include <cotila/scalar/math.h>
12 
13 namespace cotila {
14 
26 template <typename T, std::size_t N>
27 constexpr vector<T, N> conj(const vector<T, N> &v) {
28  return elementwise(cotila::conj<T>, v);
29 }
30 
37 template <typename T, std::size_t N>
38 constexpr vector<T, N> sqrt(const vector<T, N> &v) {
39  return elementwise(static_cast<T (*)(T)>(sqrt), v);
40 }
41 
49 template <typename T, std::size_t N>
51  return elementwise([](auto i) { return std::real(i); }, v);
52 }
53 
61 template <typename T, std::size_t N>
62 constexpr vector<detail::remove_complex_t<T>, N> imag(const vector<T, N> &v) {
63  return elementwise([](auto i) { return std::imag(i); }, v);
64 }
65 
72 template <typename T, std::size_t N>
73 constexpr vector<detail::remove_complex_t<T>, N> abs(const vector<T, N> &v) {
74  return elementwise(abs<T>, v);
75 }
76 
85 template <typename T, std::size_t N>
86 constexpr T dot(const vector<T, N> &a, const vector<T, N> &b) {
87  T r = 0;
88  for (std::size_t i = 0; i < vector<T, N>::size; ++i)
89  r += a[i] * conj(b[i]);
90  return r;
91 }
92 
99 template <typename T, std::size_t N> constexpr T sum(const vector<T, N> &v) {
100  return accumulate(v, static_cast<T>(0), std::plus<T>());
101 }
102 
109 template <typename T, std::size_t N> constexpr T min(const vector<T, N> &v) {
110  return accumulate(v, v[0], [](T a, T b) { return std::min(a, b); });
111 }
112 
119 template <typename T, std::size_t N> constexpr T max(const vector<T, N> &v) {
120  return accumulate(v, v[0], [](T a, T b) { return std::max(a, b); });
121 }
122 
123 
131 template <typename T, std::size_t N>
132 constexpr std::size_t min_index(const vector<T, N> &v) {
133  T min = v[0];
134  std::size_t index = 0;
135  for (std::size_t i = 0; i < vector<T, N>::size; ++i)
136  if (v[i] < min) {
137  index = i;
138  min = v[i];
139  }
140  return index;
141 }
142 
150 template <typename T, std::size_t N>
151 constexpr std::size_t max_index(const vector<T, N> &v) {
152  T max = v[0];
153  std::size_t index = 0;
154  for (std::size_t i = 0; i < vector<T, N>::size; ++i)
155  if (v[i] > max) {
156  index = i;
157  max = v[i];
158  }
159  return index;
160 }
161 
164 } // namespace cotila
165 
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
Definition: math.h:16
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