cotila  1.2.1
A compile time linear algebra system
operators.h
1 #ifndef COTILA_MATRIX_OPERATORS_H_
2 #define COTILA_MATRIX_OPERATORS_H_
3 
4 #include <cotila/vector/vector.h>
5 
6 namespace cotila {
7 
19 template <typename T, std::size_t N, std::size_t M>
20 constexpr bool operator==(const matrix<T, N, M> &a,
21  const matrix<T, N, M> &b) {
22  for (std::size_t i = 0; i < N; ++i) {
23  for (std::size_t j = 0; j < M; ++j) {
24  if (a[i][j] != b[i][j])
25  return false;
26  }
27  }
28  return true;
29 }
30 
38 template <typename T, std::size_t N, std::size_t M>
39 constexpr bool operator!=(const matrix<T, N, M> &a,
40  const matrix<T, N, M> &b) {
41  return !(a == b);
42 }
43 
51 template <typename T, std::size_t N, std::size_t M>
52 constexpr matrix<T, N, M> operator+(const matrix<T, N, M> &m, T a) {
53  return elementwise([a](T x) { return x + a; }, m);
54 }
55 
63 template <typename T, std::size_t N, std::size_t M>
64 constexpr matrix<T, N, M> operator+(T a, const matrix<T, N, M> &m) {
65  return elementwise([a](T x) { return a + x; }, m);
66 }
67 
75 template <typename T, std::size_t N, std::size_t M>
77  const matrix<T, N, M> &b) {
78  return elementwise(std::plus<T>(), a, b);
79 }
80 
88 template <typename T, std::size_t N, std::size_t M>
89 constexpr matrix<T, N, M> operator*(const matrix<T, N, M> &m, T a) {
90  return elementwise([a](T x) { return x * a; }, m);
91 }
92 
100 template <typename T, std::size_t N, std::size_t M>
101 constexpr matrix<T, N, M> operator*(T a, const matrix<T, N, M> &m) {
102  return elementwise([a](T x) { return a * x; }, m);
103 }
104 
112 template <typename T, std::size_t N, std::size_t M>
114  const matrix<T, N, M> &b) {
115  return elementwise(std::multiplies<T>(), a, b);
116 }
117 
125 template <typename T, std::size_t N, std::size_t M>
126 constexpr matrix<T, N, M> operator/(T a, const matrix<T, N, M> &m) {
127  return elementwise([a](T x) { return a / x; }, m);
128 }
129 
138 template <typename T, std::size_t N, std::size_t M>
140  const matrix<T, N, M> &b) {
141  return elementwise(std::divides<T>(), a, b);
142 }
143 
146 } // namespace cotila
147 
148 #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
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.
A container representing a matrix.
Definition: matrix.h:25
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