Discontinuous Galerkin Library
#include "dg/algorithm.h"
|
A square nxn matrix. More...
Public Types | |
typedef T | value_type |
typically double or float | |
Public Member Functions | |
SquareMatrix ()=default | |
Construct empty SquareMatrix. | |
SquareMatrix (const unsigned n) | |
allocate storage for nxn matrix | |
SquareMatrix (const unsigned n, const T &value) | |
Initialize elements. | |
template<class InputIterator > | |
SquareMatrix (InputIterator first, InputIterator last, std::enable_if_t<!std::is_integral< InputIterator >::value > *=0) | |
Construct from iterators. | |
SquareMatrix (const std::vector< T > &src) | |
Copy from existing data. | |
void | zero () |
Assign zero to all elements. | |
T & | operator() (const size_t i, const size_t j) |
access operator | |
const T & | operator() (const size_t i, const size_t j) const |
const access operator | |
unsigned | size () const |
Size n of the SquareMatrix. | |
void | resize (unsigned m, T val=T()) |
Resize. | |
const std::vector< value_type > & | data () const |
access underlying data | |
std::vector< value_type > & | data () |
Write access to underlying data. | |
void | swap_lines (const size_t i, const size_t k) |
Swap two lines in the square matrix. | |
SquareMatrix | transpose () const |
Transposition. | |
template<class ContainerType1 , class ContainerType2 > | |
void | symv (const ContainerType1 &x, ContainerType2 &y) const |
Matrix vector multiplication \( y = S x\). | |
template<class value_type1 , class ContainerType1 , class value_type2 , class ContainerType2 > | |
void | symv (value_type1 alpha, const ContainerType1 &x, value_type2 beta, ContainerType2 &y) const |
Matrix vector multiplication \( y = \alpha S x + \beta y\). | |
bool | operator!= (const SquareMatrix &rhs) const |
two Matrices are considered equal if elements are equal | |
bool | operator== (const SquareMatrix &rhs) const |
two Matrices are considered equal if elements are equal | |
SquareMatrix | operator- () const |
subtract | |
SquareMatrix & | operator+= (const SquareMatrix &op) |
add | |
SquareMatrix & | operator-= (const SquareMatrix &op) |
subtract | |
SquareMatrix & | operator*= (const T &value) |
scalar multiply | |
Friends | |
SquareMatrix | operator+ (const SquareMatrix &lhs, const SquareMatrix &rhs) |
add | |
SquareMatrix | operator- (const SquareMatrix &lhs, const SquareMatrix &rhs) |
subtract | |
SquareMatrix | operator* (const T &value, const SquareMatrix &rhs) |
scalar multiplication | |
SquareMatrix | operator* (const SquareMatrix &lhs, const T &value) |
scalar multiplication | |
SquareMatrix | operator* (const SquareMatrix &lhs, const SquareMatrix &rhs) |
matrix multiplication | |
template<class ContainerType > | |
ContainerType | operator* (const SquareMatrix &S, const ContainerType &x) |
matrix-vector multiplication \( y = S x\) | |
template<class Ostream > | |
Ostream & | operator<< (Ostream &os, const SquareMatrix &mat) |
puts a matrix linewise in output stream | |
template<class Istream > | |
Istream & | operator>> (Istream &is, SquareMatrix< T > &mat) |
Read values into a Matrix from given istream. | |
A square nxn matrix.
An enhanced square dynamic matrix for which arithmetic operators are overloaded. It is not meant for performance critical code but is very convenient for example for the assembly of matrices or testing code.
dg::exblas
and are thus quite robust agains almost singular matrices: dg::invert
, dg::create::lu_pivot
, dg::lu_solve
T | value type |
T dg::SquareMatrix< T >::value_type |
typically double or float
|
default |
Construct empty SquareMatrix.
|
inlineexplicit |
allocate storage for nxn matrix
n | size |
|
inline |
Initialize elements.
n | matrix is of size n x n |
value | Every element is initialized to. |
|
inline |
Construct from iterators.
InputIterator |
first | |
last |
|
inline |
Copy from existing data.
src | size must be a square number |
|
inline |
Write access to underlying data.
|
inline |
access underlying data
|
inline |
two Matrices are considered equal if elements are equal
rhs | Matrix to be compared to this |
|
inline |
access operator
i | row index |
j | column index |
|
inline |
const access operator
i | row index |
j | column index |
|
inline |
scalar multiply
value |
|
inline |
add
op |
|
inline |
subtract
|
inline |
subtract
op |
|
inline |
two Matrices are considered equal if elements are equal
rhs | Matrix to be compared to this |
|
inline |
Resize.
m | new size |
val | if m is greater than the current size new elements are initialized with val |
|
inline |
Size n of the SquareMatrix.
|
inline |
Swap two lines in the square matrix.
i | first line |
k | second line |
|
inline |
Matrix vector multiplication \( y = S x\).
This makes SquareMatrix usable in dg::blas2::symv
ContainerType | Any container with operator[] |
x | input vector |
y | contains the solution on output (may not alias x ) |
|
inline |
Matrix vector multiplication \( y = \alpha S x + \beta y\).
This makes SquareMatrix usable in dg::blas2::symv
ContainerType | Any container with operator[] |
alpha | A scalar |
x | input vector |
beta | A scalar |
y | contains the solution on output (may not alias x ) |
|
inline |
Transposition.
|
inline |
Assign zero to all elements.
|
friend |
matrix multiplication
lhs | |
rhs |
|
friend |
scalar multiplication
lhs | |
value |
|
friend |
matrix-vector multiplication \( y = S x\)
S | Matrix |
x | Vector |
|
friend |
scalar multiplication
value | |
rhs |
|
friend |
add
lhs | |
rhs |
|
friend |
subtract
lhs | |
rhs |
|
friend |
puts a matrix linewise in output stream
Ostream | The stream e.g. std::cout |
os | the outstream |
mat | the matrix to output |
|
friend |
Read values into a Matrix from given istream.
The values are filled linewise into the matrix. Values are seperated by whitespace characters. (i.e. newline, blank, etc)
Istream | The stream e.g. std::cin |
is | The istream |
mat | The Matrix into which the values are written |