Matrix class
Template parameters | |
---|---|
T | the number type |
N | the number of rows |
M | the number of columns |
Contents
Static matrix class. Memory layout is based on rows
Public static variables
Constructors, destructors, conversion operators
- Matrix()
- Matrix(const T val) explicit
- Matrix(const std::initializer_list<T>& lst)
- Matrix(const Matrix<T, N, M>& other)
- Matrix(Matrix<T, N, M>&& other) noexcept
-
template<typename T>Matrix(const fsize n, const fsize m)
-
template<typename T>Matrix(const fsize n, const fsize m, const T val)
-
template<typename T>Matrix(const fsize n, const fsize m, const std::initializer_list<T>& lst)
-
template<typename T>Matrix(const Matrix<T>& other)
-
template<typename T>Matrix(Matrix<T>&& other) noexcept
Public functions
- auto operator=(const Matrix<T, N, M>& other) -> Matrix<T, N, M>&
- auto operator=(Matrix<T, N, M>&& other) -> Matrix<T, N, M>& noexcept
- auto operator()(const fsize l, const fsize c) -> T&
- auto operator()(const fsize l, const fsize c) const -> T
- auto operator*() const -> const T* noexcept
- auto operator*() -> T* noexcept
- auto operator==(const Matrix<T, N, M>& other) const -> bool
- auto operator!=(const Matrix<T, N, M>& other) const -> bool
-
template<fsize P>auto operator*(const Matrix<T, M, P>& other) const -> Matrix<T, N, P>
- auto operator+(const Matrix<T, N, M>& other) const -> Matrix<T, N, M>
- auto operator*(const Vector<T, N>& other) const -> Vector<T, N>
- auto operator*(const T& other) const -> Matrix<T, N, M>
- auto Transpose() const -> Matrix<T, M, N>
- void SwapRows(fsize rowa, fsize rowb)
- void SwapColumns(fsize cola, fsize colb)
-
template<typename T>auto operator*(const Matrix<T>& other) const -> Matrix<T>
-
template<typename T>auto operator*(const Vector<T>& other) const -> Vector<T>
Function documentation
T& bpf:: math:: Matrix<T, N, M>:: operator()(const fsize l,
const fsize c)
Parameters | |
---|---|
l | the row number |
c | the column number |
Returns | mutable cell value |
Obtains the value of a cell for modification
T bpf:: math:: Matrix<T, N, M>:: operator()(const fsize l,
const fsize c) const
Parameters | |
---|---|
l | the row number |
c | the column number |
Returns | immutable cell value |
Obtains the value of a cell for reading
bool bpf:: math:: Matrix<T, N, M>:: operator==(const Matrix<T, N, M>& other) const
Parameters | |
---|---|
other | matrix to compare with |
Returns | true if the two matrices are equal, false otherwise |
Compare two matrices
bool bpf:: math:: Matrix<T, N, M>:: operator!=(const Matrix<T, N, M>& other) const
Parameters | |
---|---|
other | matrix to compare with |
Returns | true if the two matrices are not equal, false otherwise |
Compare two matrices
void bpf:: math:: Matrix<T, N, M>:: SwapColumns(fsize cola,
fsize colb)
Parameters | |
---|---|
cola | first column number |
colb | second column number |
Swaps two columns of this matrix