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 (intmatrix &a, const int &l1, const int &u1, const int &l2, const int &u2) throw () | |
Constructor of class intmatrix_slice. | |
intmatrix_slice (intmatrix_slice &a, const int &l1, const int &u1, const int &l2, const int &u2) throw () | |
Constructor of class intmatrix_slice. | |
intmatrix_slice (const intmatrix_slice &ms) throw () | |
Constructor of class intmatrix_slice. | |
intmatrix_slice & | operator() () throw () |
Operator for accessing the whole matrix. | |
intmatrix_slice | operator() (const int &m, const int &n) throw () |
Operator for accessing a part of the matrix. | |
intmatrix_slice | operator() (const int &m1, const int &m2, const int &n1, const int &n2) throw () |
Operator for accessing a part of the matrix. | |
intmatrix_slice & | operator*= (const int &c) throw () |
Implementation of multiplication and allocation operation. | |
intmatrix_slice & | operator+= (const intmatrix &m1) throw () |
Implementation of addition and allocation operation. | |
intmatrix_slice & | operator+= (const intmatrix_slice &ms2) throw () |
Implementation of addition and allocation operation. | |
intmatrix_slice & | operator-= (const intmatrix &m1) throw () |
Implementation of subtraction and allocation operation. | |
intmatrix_slice & | operator-= (const intmatrix_slice &ms2) throw () |
Implementation of subtraction and allocation operation. | |
intmatrix_slice & | operator/= (const int &c) throw () |
Implementation of division and allocation operation. | |
intmatrix_slice & | operator= (const intmatrix &m) throw () |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intmatrix_slice &ms) throw () |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const int &r) throw () |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intvector &v) throw () |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intvector_slice &v) throw () |
Implementation of standard assigning operator. | |
intmatrix_slice & | operator= (const intmatrix_subv &v) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv | operator[] (const int &i) throw () |
Operator for accessing a single row of the matrix. | |
intmatrix_subv | operator[] (const cxscmatrix_column &i) throw () |
Operator for accessing a single column of the matrix. |
The Data Type intmatrix_slice.
This data type represents a partial intmatrix.
Definition at line 593 of file intmatrix.hpp.