C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
|
The Data Type intmatrix_slice. More...
#include <intmatrix.hpp>
Public Member Functions | |
intmatrix_slice (const intmatrix_slice &ms) noexcept | |
Constructor of class intmatrix_slice. | |
intmatrix_slice (intmatrix &a, const int &l1, const int &u1, const int &l2, const int &u2) noexcept | |
Constructor of class intmatrix_slice. | |
intmatrix_slice (intmatrix_slice &a, const int &l1, const int &u1, const int &l2, const int &u2) noexcept | |
Constructor of class intmatrix_slice. | |
intmatrix_slice & | 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_slice & | operator*= (const int &c) noexcept |
Implementation of multiplication and allocation operation. | |
intmatrix_slice & | operator+= (const intmatrix &m1) noexcept |
Implementation of addition and allocation operation. | |
intmatrix_slice & | operator+= (const intmatrix_slice &ms2) noexcept |
Implementation of addition and allocation operation. | |
intmatrix_slice & | operator-= (const intmatrix &m1) noexcept |
Implementation of subtraction and allocation operation. | |
intmatrix_slice & | operator-= (const intmatrix_slice &ms2) noexcept |
Implementation of subtraction and allocation operation. | |
intmatrix_slice & | operator/= (const int &c) noexcept |
Implementation of division and allocation operation. | |
intmatrix_slice & | operator= (const int &r) noexcept |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intmatrix &m) noexcept |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intmatrix_slice &ms) noexcept |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intmatrix_subv &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intvector &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intvector_slice &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv | operator[] (const cxscmatrix_column &i) noexcept |
Operator for accessing a single column of the matrix. | |
intmatrix_subv | operator[] (const int &i) noexcept |
Operator for accessing a single row of the matrix. | |
The Data Type intmatrix_slice.
This data type represents a partial intmatrix.
Definition at line 593 of file intmatrix.hpp.