mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
matnxn.inl
Go to the documentation of this file.
1#pragma once
2#include "matnxn.hpp"
3
4namespace mal_math
5{
6 template <size_t a, size_t b, Primitive T>
7 template <Primitive P>
8 constexpr mat<a, b, T>::mat(P p) requires(a == b)
9 {
10 reset();
11 for (size_t i = 0; i < a; i++)
12 {
13 data[i][i] = static_cast<T>(p);
14 }
15 }
16 template <size_t a, size_t b, Primitive T>
17 template <size_t c, size_t d, Primitive P>
18 constexpr mat<a, b, T>::mat(mat<c, d, P> p) requires(a >= c && b >= d)
19 {
20 reset();
21 for (size_t i = 0; i < c; i++)
22 {
23 for (size_t j = 0; j < d; j++)
24 {
25 data[i][j] = static_cast<T>(p.data[i][j]);
26 }
27 }
28 }
29 template <size_t a, size_t b, Primitive T>
30 template <size_t c, size_t d, Primitive P>
31 constexpr mat<a, b, T>::mat(rmat<c, d, P> p) requires(a >= c && b >= d)
32 {
33 reset();
34 for (size_t i = 0; i < c; i++)
35 {
36 for (size_t j = 0; j < d; j++)
37 {
38 data[i][j] = static_cast<T>(p.data[i][j]);
39 }
40 }
41 }
42 template <size_t a, size_t b, Primitive T>
43 template <Primitive P>
45 {
46 for (size_t i = 0; i < a * b; i++)
47 {
48 arr[i] = static_cast<T>(p.arr[i]);
49 }
50 }
51 template <size_t a, size_t b, Primitive T>
52 template <Primitive P>
54 {
55 for (size_t i = 0; i < a * b; i++)
56 {
57 arr[i] = static_cast<T>(p.arr[i]);
58 }
59 }
60 template <size_t a, size_t b, Primitive T>
61 template <typename... U>
62 constexpr mat<a, b, T>::mat(U... data)
63 {
64 static_assert(get_parameter_pack_size<U...>() == a * b,
65 "You have provided wrong amount of data");
66 unpack_data(0, data...);
67 }
68
69 template <size_t a, size_t b, Primitive T>
70 constexpr void mat<a, b, T>::reset() noexcept
71 {
72 for (size_t i = 0; i < size.x; i++)
73 {
74 data[i].reset();
75 }
76 for (size_t i = 0; i < a && i < b; i++)
77 {
78 data[i][i] = 1;
79 }
80 }
81
82 template <size_t a, size_t b, Primitive T>
83 [[nodiscard]] constexpr vec<b, T> &mat<a, b, T>::operator[](size_t i)
84 {
85 assert(i < size.x);
86 return data[i];
87 }
88 template <size_t a, size_t b, Primitive T>
89 [[nodiscard]] constexpr vec<b, T> const &mat<a, b, T>::operator[](size_t i) const
90 {
91 assert(i < size.x);
92 return data[i];
93 }
94
95 template <size_t a, size_t b, Primitive T>
96 [[nodiscard]] constexpr mat<a, b, T> const &mat<a, b, T>::operator+() const noexcept
97 {
98 return *this;
99 }
100
101 template <size_t a, size_t b, Primitive T>
102 [[nodiscard]] constexpr mat<a, b, T> mat<a, b, T>::operator-() const noexcept
103 {
104 mat<a, b, T> return_value{};
105 for (size_t i = 0; i < size.x; i++)
106 {
107 return_value.data[i] = -data[i];
108 }
109 return return_value;
110 }
111
112 template <size_t a, size_t b, Primitive T>
113 template <Primitive U>
115 {
116 for (size_t i = 0; i < size.x; i++)
117 {
118 data[i] += other.data[i];
119 }
120 return *this;
121 }
122 template <size_t a, size_t b, Primitive T>
123 template <Primitive U>
125 {
126 for (size_t i = 0; i < size.x; i++)
127 {
128 data[i] -= other.data[i];
129 }
130 return *this;
131 }
132
133 template <size_t a, size_t b, Primitive T>
134 template <size_t c, Primitive U>
136 {
137 return (*this = *this * other);
138 }
139
140 template <size_t a, size_t b, Primitive T>
141 template <Primitive U>
143 {
144 for (size_t i = 0; i < size.x; i++)
145 {
146 data[i] += other.data[i];
147 }
148 return *this;
149 }
150 template <size_t a, size_t b, Primitive T>
151 template <Primitive U>
153 {
154 for (size_t i = 0; i < size.x; i++)
155 {
156 data[i] -= other.data[i];
157 }
158 return *this;
159 }
160
161 template <size_t a, size_t b, Primitive T>
162 template <size_t c, Primitive U>
164 {
165 return (*this = *this * other);
166 }
167
168 template <size_t a, size_t b, Primitive T>
169 template <Primitive U>
170 constexpr mat<a, b, T> &mat<a, b, T>::operator+=(U const value)
171 {
172 for (size_t i = 0; i < size.x; i++)
173 {
174 data[i] += value;
175 }
176 return *this;
177 }
178 template <size_t a, size_t b, Primitive T>
179 template <Primitive U>
180 constexpr mat<a, b, T> &mat<a, b, T>::operator-=(U const value)
181 {
182 for (size_t i = 0; i < size.x; i++)
183 {
184 data[i] -= value;
185 }
186 return *this;
187 }
188 template <size_t a, size_t b, Primitive T>
189 template <Primitive U>
190 constexpr mat<a, b, T> &mat<a, b, T>::operator*=(U const value)
191 {
192 for (size_t i = 0; i < size.x; i++)
193 {
194 data[i] *= value;
195 }
196 return *this;
197 }
198
199 template <size_t a, size_t b, Primitive T>
200 template <Primitive _>
202 {
203 // Return the size of the parameter pack for primitive types (always 1).
204 return 1;
205 }
206
207 template <size_t a, size_t b, Primitive T>
208 template <class V>
210 {
211 // Return the size of the parameter pack for vectors (determined by V::size).
212 return V::size;
213 }
214
215 template <size_t a, size_t b, Primitive T>
216 template <typename A, typename B, typename... C>
218 {
219 // Recursively compute the total size of the parameter pack.
220 // This is achieved by summing the sizes of A, B, and the sizes of C... using recursive calls.
221 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
222 }
223
224 template <size_t a, size_t b, Primitive T>
225 template <Primitive U>
226 constexpr void mat<a, b, T>::unpack_data(size_t offset, U u)
227 {
228 // Store the primitive value 'u' at the specified offset in the linear array 'arr'.
229 arr[offset] = static_cast<T>(u);
230 }
231
232 template <size_t a, size_t b, Primitive T>
233 template <class V>
234 constexpr void mat<a, b, T>::unpack_data(size_t offset, V vec)
235 {
236 // Store the elements of the vector 'vec' at the specified offset in the linear array 'arr'.
237 for (size_t i = 0; i < V::size; i++)
238 {
239 arr[offset + i] = static_cast<T>(vec[i]);
240 }
241 }
242
243 template <size_t a, size_t b, Primitive T>
244 template <typename A, typename B, typename... C>
245 constexpr void mat<a, b, T>::unpack_data(size_t offset, A first, B second, C... rest)
246 {
247 // Recursively unpack and store multiple values in the linear array 'arr' at the specified offset.
248 // The first value 'first' is stored, and the offset is updated.
249 unpack_data(offset, first);
250
251 // Increment the offset based on the size of the parameter 'first', then unpack and store the remaining values.
252 offset += get_parameter_pack_size<A>();
253 unpack_data(offset, second, rest...);
254 }
255
256} // namespace mal_math
Provides the definition of a generic NxN matrix for mathematical operations.
Contains mathematical utility functions and classes.
Definition of matrix with dimensions rows x columns and type T
Definition matnxn.hpp:39
constexpr mat< a, b, T > & operator-=(mat< a, b, U > const &other)
Subtracts another matrix from the current matrix.
Definition matnxn.inl:124
constexpr mat< a, b, T > & operator+=(mat< a, b, U > const &other)
Adds another matrix to the current matrix.
Definition matnxn.inl:114
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the matrix data.
Definition matnxn.inl:226
std::array< T, size.x *size.y > arr
Linear array representation of matrix data.
Definition matnxn.hpp:248
constexpr mat< a, b, T > operator-() const noexcept
Unary minus operator.
Definition matnxn.inl:102
constexpr mat< a, b, T > const & operator+() const noexcept
Unary plus operator.
Definition matnxn.inl:96
constexpr void reset() noexcept
Resets the matrix to have all zero values.
Definition matnxn.inl:70
constexpr vec< b, T > & operator[](size_t i)
Accesses a row of the matrix.
Definition matnxn.inl:83
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
Definition matnxn.inl:201
constexpr mat()=default
Default constructor.
std::array< vec< size.y, T >, size.x > data
2D array (rows x columns) representation of matrix data.
Definition matnxn.hpp:249
constexpr mat< a, c, T > & operator*=(mat< b, c, U > const &other)
Multiplies the current matrix with another matrix.
Definition matnxn.inl:135
Definition of a reference matrix with dimensions rows x columns and type T
Definition rmatnxn.hpp:45
std::array< _detail::primitive_reference_wrapper< T >, size.x *size.y > arr
Linear representation of the matrix.
Definition rmatnxn.hpp:136
std::array< _detail::rvec< size.y, T >, size.x > data
2D representation of the matrix.
Definition rmatnxn.hpp:137
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22