cotila  1.2.1
A compile time linear algebra system
operators.h
1 #ifndef COTILA_VECTOR_OPERATORS_H_
2 #define COTILA_VECTOR_OPERATORS_H_
3 
4 #include <cotila/vector/vector.h>
5 
6 namespace cotila {
7 
19 template <typename T, std::size_t N>
20 constexpr bool operator==(const vector<T, N> &a, const vector<T, N> &b) {
21  for (std::size_t i = 0; i < vector<T, N>::size; ++i) {
22  if (a[i] != b[i])
23  return false;
24  }
25  return true;
26 }
27 
35 template <typename T, std::size_t N>
36 constexpr bool operator!=(const vector<T, N> &a, const vector<T, N> &b) {
37  return !(a == b);
38 }
39 
47 template <typename T, std::size_t N>
48 constexpr vector<T, N> operator+(const vector<T, N> &v, T a) {
49  return elementwise([a](T x) { return x + a; }, v);
50 }
51 
59 template <typename T, std::size_t N>
60 constexpr vector<T, N> operator+(T a, const vector<T, N> &v) {
61  return elementwise([a](T x) { return a + x; }, v);
62 }
63 
71 template <typename T, std::size_t N>
72 constexpr vector<T, N> operator+(const vector<T, N> &a,
73  const vector<T, N> &b) {
74  return elementwise(std::plus<T>(), a, b);
75 }
76 
84 template <typename T, std::size_t N>
85 constexpr vector<T, N> operator*(const vector<T, N> &v, T a) {
86  return elementwise([a](T x) { return x * a; }, v);
87 }
88 
96 template <typename T, std::size_t N>
97 constexpr vector<T, N> operator*(T a, const vector<T, N> &v) {
98  return elementwise([a](T x) { return a * x; }, v);
99 }
100 
108 template <typename T, std::size_t N>
110  const vector<T, N> &b) {
111  return elementwise(std::multiplies<T>(), a, b);
112 }
113 
121 template <typename T, std::size_t N>
122 constexpr vector<T, N> operator/(T a, const vector<T, N> &v) {
123  return elementwise([a](T x) { return a / x; }, v);
124 }
125 
134 template <typename T, std::size_t N>
136  const vector<T, N> &b) {
137  return elementwise(std::divides<T>(), a, b);
138 }
139 
142 } // namespace cotila
143 
144 #endif // COTILA_VECTOR_OPERATORS_H_
constexpr bool operator==(const vector< T, N > &a, const vector< T, N > &b)
checks equality of two vectors
Definition: operators.h:20
Definition: math.h:16
A container representing a vector.
Definition: vector.h:25
constexpr vector< T, N > operator*(const vector< T, N > &a, const vector< T, N > &b)
computes the Hadamard product
Definition: operators.h:109
Contains the definition of the cotila::vector class.
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
constexpr vector< T, N > operator+(const vector< T, N > &a, const vector< T, N > &b)
computes the vector sum
Definition: operators.h:72
constexpr vector< T, N > operator/(const vector< T, N > &a, const vector< T, N > &b)
computes the elementwise vector quotient
Definition: operators.h:135
constexpr bool operator!=(const vector< T, N > &a, const vector< T, N > &b)
checks inequality of two vectors
Definition: operators.h:36