mal-math
C++20 mathematics library.
|
Definition of a reference matrix with dimensions rows
x columns
and type T
More...
#include "rmatnxn.hpp"
Public Types | |
using | type = T |
Alias for the data type of the matrix elements. | |
Public Member Functions | |
constexpr | rmat () |
Default constructor. | |
template<size_t c, size_t d, Primitive P> requires (c >= a && d >= b) | |
constexpr | rmat (mat< c, d, P > &p) |
Constructs a reference matrix from another matrix. | |
template<size_t c, size_t d, Primitive P> requires (c >= a && d >= b) | |
constexpr | rmat (rmat< c, d, P > &p) |
Constructs a reference matrix from another reference matrix. | |
template<typename U > | |
constexpr rmat< a, b, T > & | operator= (mat< a, b, U > const &mat) |
Assigns values from a matrix of the same size. | |
template<typename U > | |
constexpr rmat< a, b, T > & | operator= (rmat< a, b, U > const &mat) |
Assigns values from a reference matrix of the same size. | |
constexpr void | reset () noexcept |
Resets all elements to zero. | |
constexpr _detail::rvec< b, T > & | operator[] (size_t i) |
Indexing operator to access rows. | |
constexpr _detail::rvec< b, T > const & | operator[] (size_t i) const |
Const version of indexing operator to access rows. | |
constexpr rmat< a, b, T > const & | operator+ () const noexcept |
Unary plus operator, returns the matrix itself. | |
constexpr mat< a, b, T > | operator- () const noexcept |
Unary minus operator, returns negated matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator+= (rmat< a, b, U > const &other) |
Adds another reference matrix of the same size to this matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator-= (rmat< a, b, U > const &other) |
Subtracts another reference matrix of the same size from this matrix. | |
template<size_t c, Primitive U> | |
constexpr rmat< a, c, T > & | operator*= (rmat< b, c, U > const &other) |
Matrix multiplication with another reference matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator+= (mat< a, b, U > const &other) |
Adds another matrix of the same size to this matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator-= (mat< a, b, U > const &other) |
Subtracts another matrix of the same size from this matrix. | |
template<size_t c, Primitive U> | |
constexpr rmat< a, c, T > & | operator*= (mat< b, c, U > const &other) |
Matrix multiplication with another matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator+= (U const value) |
Adds a scalar to all elements of this matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator-= (U const value) |
Subtracts a scalar from all elements of this matrix. | |
template<Primitive U> | |
constexpr rmat< a, b, T > & | operator*= (U const value) |
Multiplies all elements of this matrix with a scalar. | |
Public Attributes | ||
union { | ||
std::array< _detail::primitive_reference_wrapper< T >, size.x *size.y > arr | ||
Linear representation of the matrix. More... | ||
std::array< _detail::rvec< size.y, T >, size.x > data | ||
2D representation of the matrix. More... | ||
}; | ||
Union to represent matrix data in different formats. | ||
Static Public Attributes | |
static constexpr ivec2 | size { a, b } |
Defines the size of the matrix. | |
Definition of a reference matrix with dimensions rows
x columns
and type T
Represents a matrix of references, allowing efficient interactions without actual copying.
a | Number of rows in the matrix. |
b | Number of columns in the matrix. |
T | Primitive type of the matrix elements. |
Definition at line 45 of file rmatnxn.hpp.
using mal_math::rmat< a, b, T >::type = T |
Alias for the data type of the matrix elements.
Definition at line 46 of file rmatnxn.hpp.
|
inlineconstexpr |
Default constructor.
Definition at line 51 of file rmatnxn.hpp.
|
constexpr |
Constructs a reference matrix from another matrix.
c | Number of rows in the source matrix. |
d | Number of columns in the source matrix. |
P | Primitive type of the source matrix elements. |
p | Source matrix to be copied from. |
Definition at line 8 of file rmatnxn.inl.
|
constexpr |
Constructs a reference matrix from another reference matrix.
c | Number of rows in the source matrix. |
d | Number of columns in the source matrix. |
P | Primitive type of the source matrix elements. |
p | Source reference matrix to be copied from. |
Definition at line 20 of file rmatnxn.inl.
|
constexpr |
Matrix multiplication with another matrix.
Definition at line 146 of file rmatnxn.inl.
|
constexpr |
Matrix multiplication with another reference matrix.
Definition at line 119 of file rmatnxn.inl.
|
constexpr |
Multiplies all elements of this matrix with a scalar.
Definition at line 173 of file rmatnxn.inl.
|
nodiscardconstexprnoexcept |
Unary plus operator, returns the matrix itself.
Definition at line 80 of file rmatnxn.inl.
|
constexpr |
Adds another matrix of the same size to this matrix.
Definition at line 125 of file rmatnxn.inl.
|
constexpr |
Adds another reference matrix of the same size to this matrix.
Definition at line 98 of file rmatnxn.inl.
|
constexpr |
Adds a scalar to all elements of this matrix.
Definition at line 153 of file rmatnxn.inl.
|
nodiscardconstexprnoexcept |
Unary minus operator, returns negated matrix.
Definition at line 86 of file rmatnxn.inl.
|
constexpr |
Subtracts another matrix of the same size from this matrix.
Definition at line 135 of file rmatnxn.inl.
|
constexpr |
Subtracts another reference matrix of the same size from this matrix.
Definition at line 108 of file rmatnxn.inl.
|
constexpr |
Subtracts a scalar from all elements of this matrix.
Definition at line 163 of file rmatnxn.inl.
|
constexpr |
Assigns values from a matrix of the same size.
Definition at line 33 of file rmatnxn.inl.
|
constexpr |
Assigns values from a reference matrix of the same size.
Definition at line 44 of file rmatnxn.inl.
|
nodiscardconstexpr |
Indexing operator to access rows.
Definition at line 67 of file rmatnxn.inl.
|
nodiscardconstexpr |
Const version of indexing operator to access rows.
Definition at line 73 of file rmatnxn.inl.
|
constexprnoexcept |
Resets all elements to zero.
Definition at line 54 of file rmatnxn.inl.
union { ... } mal_math::rmat< a, b, T > |
Union to represent matrix data in different formats.
std::array<_detail::primitive_reference_wrapper<T>, size.x * size.y> mal_math::rmat< a, b, T >::arr |
Linear representation of the matrix.
Definition at line 136 of file rmatnxn.hpp.
std::array<_detail::rvec<size.y, T>, size.x> mal_math::rmat< a, b, T >::data |
2D representation of the matrix.
Definition at line 137 of file rmatnxn.hpp.
|
staticconstexpr |
Defines the size of the matrix.
Definition at line 48 of file rmatnxn.hpp.