C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
|
The Data Type intmatrix. More...
#include <intmatrix.hpp>
Public Member Functions | |
intmatrix () noexcept | |
Constructor of class intmatrix. | |
intmatrix (const int &m, const int &n) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const int &m1, const int &n1, const int &m2, const int &n2) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const int &r) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const intmatrix &rm) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const intmatrix_slice &rm) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const intvector &v) noexcept | |
Constructor of class intmatrix. | |
intmatrix (const intvector_slice &v) noexcept | |
Constructor of class intmatrix. | |
intmatrix & | operator() () noexcept |
Operator for accessing the whole matrix. | |
intmatrix_slice | operator() (const int &m, const int &n) noexcept |
Operator for accessing a part of the matrix. | |
intmatrix_slice | operator() (const int &m1, const int &m2, const int &n1, const int &n2) noexcept |
Operator for accessing a part of the matrix. | |
intmatrix & | operator= (const int &r) noexcept |
Implementation of standard assigning operator. | |
intmatrix & | operator= (const intmatrix &m) noexcept |
Implementation of standard assigning operator. | |
intmatrix & | operator= (const intmatrix_slice &ms) noexcept |
Implementation of standard assigning operator. | |
intmatrix & | operator= (const intvector &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix & | operator= (const intvector_slice &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv | operator[] (const cxscmatrix_column &i) const noexcept |
Operator for accessing a single column of the matrix. | |
intmatrix_subv | operator[] (const int &i) const noexcept |
Operator for accessing a single row of the matrix. | |