C-XSC - A C++ Class Library for Extended Scientific Computing
2.5.4
|
The Data Type intmatrix_subv. More...
#include <intmatrix.hpp>
Public Member Functions | |
intmatrix_subv (int *d, const int &l, const int &u, const int &s, const int &st, const int &o) throw () | |
Constructor of class intmatrix_subv. | |
intmatrix_subv (const intmatrix_subv &v) throw () | |
Constructor of class intmatrix_subv. | |
intmatrix_subv & | operator() () throw () |
Operator for accessing the whole vector. | |
intmatrix_subv | operator() (const int &i) throw () |
Operator for accessing a part of the vector. | |
intmatrix_subv | operator() (const int &i1, const int &i2) throw () |
Operator for accessing a part of the vector. | |
intmatrix_subv & | operator*= (const int &c) throw () |
Implementation of multiplication and allocation operation. | |
intmatrix_subv & | operator+= (const int &c) throw () |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator+= (const intvector &rv) throw () |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator+= (const intvector_slice &rv) throw () |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator-= (const int &c) throw () |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator-= (const intvector &rv) throw () |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator-= (const intvector_slice &rv) throw () |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator/= (const int &c) throw () |
Implementation of division and allocation operation. | |
intmatrix_subv & | operator= (const intmatrix_subv &rv) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const int &r) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intmatrix &m) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intmatrix_slice &m) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intvector &v) throw () |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intvector_slice &v) throw () |
Implementation of standard assigning operator. | |
int & | operator[] (const int &i) const throw () |
Operator for accessing the single elements of the vector. | |
Friends | |
intmatrix_subv | Col (intmatrix &m, const int &i) throw () |
Returns one column of the matrix as a vector. | |
intmatrix_subv | Col (const intmatrix &m, const int &i) throw () |
Returns one column of the matrix as a vector. | |
int | Lb (const intmatrix_subv &rv) throw () |
Returns the lower bound of the vector. | |
intmatrix_subv | Row (intmatrix &m, const int &i) throw () |
Returns one row of the matrix as a vector. | |
int | Ub (const intmatrix_subv &rv) throw () |
Returns the upper bound of the vector. |
The Data Type intmatrix_subv.
This Data Type provides one column or row of a matrix as a vector.
Definition at line 45 of file intmatrix.hpp.