Efficient implementation of a M×N matrix.
The MatrixMxN class is the representation of a dynamic M×N matrix with a total of M⋅N dynamically allocated elements. These elements can be directly accessed with the 1D subscript operator or with the 2D function operator. The matrix is stored in a row-wise fashion:
\f[\left(\begin{array}{*{5}{c}} 0 & 1 & 2 & \cdots & N-1 \\ N & N+1 & N+2 & \cdots & 2 \cdot N-1 \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ M \cdot N-N & M \cdot N-N+1 & M \cdot N-N+2 & \cdots & M \cdot N-1 \\ \end{array}\right)\f]
MatrixMxN can be used with any non-cv-qualified element type. The arithmetic operators for matrix/matrix, matrix/vector and matrix/element operations with the same element type work for any element type as long as the element type supports the arithmetic operation. Arithmetic operations between matrices, vectors and elements of different element types are only supported for all data types supported by the MathTrait class template (for details see the MathTrait class description).
#include <Types.h>
Public Types | |
using | This = MatrixMxN< Type > |
Type of this MatrixMxN instance. More... | |
using | ResultType = This |
Result type for expression template evaluations. More... | |
using | ElementType = Type |
Type of the matrix elements. More... | |
using | CompositeType = const MatrixMxN & |
Data type for composite expression templates. More... | |
Public Member Functions | |
template<typename Other , size_t M, size_t N> | |
MatrixMxN< Type > & | operator= (const Other(&rhs)[M][N]) |
Array assignment to all matrix elements. More... | |
template<typename Other > | |
MatrixMxN< Type > & | scale (Other scalar) |
Scaling of the matrix by the scalar value scalar ( A=B∗s). More... | |
Constructors | |
constexpr | MatrixMxN () |
The default constructor for MatrixMxN. More... | |
constexpr | MatrixMxN (size_t m, size_t n) |
Constructor for a matrix of size m×n. More... | |
constexpr | MatrixMxN (size_t m, size_t n, Type init) |
Constructor for a homogenous initialization of all m×n matrix elements. More... | |
constexpr | MatrixMxN (const MatrixMxN &m) |
The copy constructor for MatrixMxN. More... | |
template<typename Other , size_t M, size_t N> | |
constexpr | MatrixMxN (const Other(&rhs)[M][N]) |
Array initialization of all matrix elements. More... | |
Destructor | |
~MatrixMxN () | |
The destructor for MatrixMxN. More... | |
Operators | |
template<typename Other , size_t M, size_t N> | |
MatrixMxN & | operator= (const Other(&rhs)[M][N]) |
MatrixMxN & | operator= (Type set) |
Homogenous assignment to all matrix elements. More... | |
MatrixMxN & | operator= (const MatrixMxN &set) |
Copy assignment operator for MatrixMxN. More... | |
Type & | operator[] (size_t index) |
1D-access to the matrix elements. More... | |
const Type & | operator[] (size_t index) const |
1D-access to the matrix elements. More... | |
Type & | operator() (size_t i, size_t j) |
2D-access to the matrix elements. More... | |
const Type & | operator() (size_t i, size_t j) const |
2D-access to the matrix elements. More... | |
Utility functions | |
size_t | rows () const |
Returns the current number of rows of the matrix. More... | |
size_t | columns () const |
Returns the current number of columns of the matrix. More... | |
size_t | capacity () const |
Returns the maximum capacity of the matrix. More... | |
size_t | nonZeros () const |
Returns the total number of non-zero elements in the matrix. More... | |
size_t | nonZeros (size_t i) const |
Returns the number of non-zero elements in the specified row. More... | |
void | reset () |
Reset to the default initial values. More... | |
void | clear () |
Clearing the M×N matrix. More... | |
void | resize (size_t m, size_t n, bool preserve=true) |
Changing the size of the matrix. More... | |
void | extend (size_t m, size_t n, bool preserve=true) |
Extending the size of the matrix. More... | |
void | reserve (size_t elements) |
Setting the minimum capacity of the matrix. More... | |
MatrixMxN & | transpose () |
Transposing the matrix. More... | |
bool | isDiagonal () const |
Checks if the matrix is diagonal. More... | |
bool | isSymmetric () const |
Checks if the matrix is symmetric. More... | |
template<typename Other > | |
MatrixMxN & | scale (Other scalar) |
void | swap (MatrixMxN &m) |
Swapping the contents of two matrices. More... | |
Expression template evaluation functions | |
template<typename Other > | |
bool | isAliased (const Other *alias) const |
Returns whether the matrix is aliased with the given address alias. More... | |
Private Attributes | |
Member variables | |
size_t | m_ |
The current number of rows of the matrix. More... | |
size_t | n_ |
The current number of columns of the matrix. More... | |
size_t | capacity_ |
The maximum capacity of the matrix. More... | |
Type *WALBERLA_RESTRICT | v_ |
The dynamically allocated matrix elements. More... | |
using walberla::math::MatrixMxN< Type >::CompositeType = const MatrixMxN & |
Data type for composite expression templates.
using walberla::math::MatrixMxN< Type >::ElementType = Type |
Type of the matrix elements.
using walberla::math::MatrixMxN< Type >::ResultType = This |
Result type for expression template evaluations.
using walberla::math::MatrixMxN< Type >::This = MatrixMxN<Type> |
Type of this MatrixMxN instance.
|
inlineexplicitconstexpr |
The default constructor for MatrixMxN.
|
inlineexplicitconstexpr |
Constructor for a matrix of size m×n.
No element initialization is performed!
m | The number of rows of the matrix. |
n | The number of columns of the matrix. |
Note: This constructor is only responsible to allocate the required dynamic memory. No element initialization is performed!
|
inlineexplicitconstexpr |
Constructor for a homogenous initialization of all m×n matrix elements.
m | The number of rows of the matrix. |
n | The number of columns of the matrix. |
init | The initial value of the matrix elements. |
All matrix elements are initialized with the specified value.
|
inlineconstexpr |
The copy constructor for MatrixMxN.
m | Matrix to be copied. |
The copy constructor is explicitly defined due to the required dynamic memory management and in order to enable/facilitate NRV optimization.
|
inlineconstexpr |
Array initialization of all matrix elements.
rhs | M×N dimensional array for the initialization. |
This constructor offers the option to directly initialize the elements of the matrix:
The matrix is sized according to the size of the array and initialized with the given values. Missing values are initialized with zero (as e.g. the value 6 in the example).
|
inline |
The destructor for MatrixMxN.
|
inline |
Returns the maximum capacity of the matrix.
|
inline |
|
inline |
Returns the current number of columns of the matrix.
|
inline |
Extending the size of the matrix.
m | Number of additional rows. |
n | Number of additional columns. |
preserve | true if the old values of the matrix should be preserved, false if not. |
This function increases the matrix size by m rows and n columns. During this operation, new dynamic memory may be allocated in case the capacity of the matrix is too small. Therefore this function potentially changes all matrix elements. In order to preserve the old matrix values, the preserve flag can be set to true. However, new matrix elements are not initialized!
|
inline |
Returns whether the matrix is aliased with the given address alias.
alias | The alias to be checked. |
|
inline |
Checks if the matrix is diagonal.
This function tests whether the matrix is diagonal, i.e. if the non-diagonal elements are default elements. In case of integral or floating point data types, a diagonal matrix has the form
\f[\left(\begin{array}{*{5}{c}} aa & 0 & 0 & \cdots & 0 \\ 0 & bb & 0 & \cdots & 0 \\ 0 & 0 & cc & \cdots & 0 \\ \vdots & \vdots & \vdots & \ddots & 0 \\ 0 & 0 & 0 & 0 & mn \\ \end{array}\right)\f]
|
inline |
Checks if the matrix is symmetric.
|
inline |
Returns the total number of non-zero elements in the matrix.
|
inline |
Returns the number of non-zero elements in the specified row.
i | The index of the row. |
|
inline |
2D-access to the matrix elements.
i | Access index for the row. The index has to be in the range [0..M−1]. |
j | Access index for the column. The index has to be in the range [0..N−1]. |
|
inline |
2D-access to the matrix elements.
i | Access index for the row. The index has to be in the range [0..M−1]. |
j | Access index for the column. The index has to be in the range [0..N−1]. |
|
inline |
Copy assignment operator for MatrixMxN.
rhs | Matrix to be copied. |
The matrix is resized according to the given M×N matrix and initialized as a copy of this matrix.
|
inline |
|
inline |
Array assignment to all matrix elements.
rhs | M×N dimensional array for the assignment. |
This assignment operator offers the option to directly set all elements of the matrix:
The matrix is resized according to the size of the array and initialized with the given values. Missing values are initialized with zero (as e.g. the value 6 in the example).
|
inline |
Homogenous assignment to all matrix elements.
rhs | Scalar value to be assigned to all matrix elements. |
|
inline |
1D-access to the matrix elements.
index | Access index. The index has to be in the range [0..M⋅N−1]. |
|
inline |
1D-access to the matrix elements.
index | Access index. The index has to be in the range [0..M⋅N−1]. |
|
inline |
Setting the minimum capacity of the matrix.
elements | The new minimum capacity of the sparse matrix. |
This function increases the capacity of the sparse matrix to at least elements elements. The current values of the matrix elements are preserved.
|
inline |
Reset to the default initial values.
void walberla::math::MatrixMxN< Type >::resize | ( | size_t | m, |
size_t | n, | ||
bool | preserve = true |
||
) |
Changing the size of the matrix.
m | The new number of rows of the matrix. |
n | The new number of columns of the matrix. |
preserve | true if the old values of the matrix should be preserved, false if not. |
This function resizes the matrix using the given size to m×n. During this operation, new dynamic memory may be allocated in case the capacity of the matrix is too small. Therefore this function potentially changes all matrix elements. In order to preserve the old matrix values, the preserve flag can be set to true. However, new matrix elements are not initialized!
The following example illustrates the resize operation of a 2×4 matrix to a 4×2 matrix. The new, uninitialized elements are marked with x:
\f[ \left(\begin{array}{*{4}{c}} 1 & 2 & 3 & 4 \\ 5 & 6 & 7 & 8 \\ \end{array}\right) \Longrightarrow \left(\begin{array}{*{2}{c}} 1 & 2 \\ 5 & 6 \\ x & x \\ x & x \\ \end{array}\right) \f]
|
inline |
Returns the current number of rows of the matrix.
|
inline |
|
inline |
Scaling of the matrix by the scalar value scalar ( A=B∗s).
scalar | The scalar value for the matrix scaling. |
|
inline |
Swapping the contents of two matrices.
m | The matrix to be swapped. |
no-throw | guarantee. |
|
inline |
Transposing the matrix.
|
private |
The maximum capacity of the matrix.
|
private |
The current number of rows of the matrix.
|
private |
The current number of columns of the matrix.
|
private |
The dynamically allocated matrix elements.
Access to the matrix elements is gained via the subscript or function call operator. The order of the elements is
(012⋯N−1NN+1N+2⋯2⋅N−1⋮⋮⋮⋱⋮M⋅N−NM⋅N−N+1M⋅N−N+2⋯M⋅N−1)