1 #ifndef COTILA_MATRIX_OPERATORS_H_ 2 #define COTILA_MATRIX_OPERATORS_H_ 19 template <
typename T, std::
size_t N, std::
size_t M>
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])
38 template <
typename T, std::
size_t N, std::
size_t M>
51 template <
typename T, std::
size_t N, std::
size_t M>
63 template <
typename T, std::
size_t N, std::
size_t M>
75 template <
typename T, std::
size_t N, std::
size_t M>
88 template <
typename T, std::
size_t N, std::
size_t M>
100 template <
typename T, std::
size_t N, std::
size_t M>
112 template <
typename T, std::
size_t N, std::
size_t M>
125 template <
typename T, std::
size_t N, std::
size_t M>
138 template <
typename T, std::
size_t N, std::
size_t M>
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
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