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 (const intmatrix_subv &v) noexcept | |
Constructor of class intmatrix_subv. | |
intmatrix_subv (int *d, const int &l, const int &u, const int &s, const int &st, const int &o) noexcept | |
Constructor of class intmatrix_subv. | |
intmatrix_subv & | operator() () noexcept |
Operator for accessing the whole vector. | |
intmatrix_subv | operator() (const int &i) noexcept |
Operator for accessing a part of the vector. | |
intmatrix_subv | operator() (const int &i1, const int &i2) noexcept |
Operator for accessing a part of the vector. | |
intmatrix_subv & | operator*= (const int &c) noexcept |
Implementation of multiplication and allocation operation. | |
intmatrix_subv & | operator+= (const int &c) noexcept |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator+= (const intvector &rv) noexcept |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator+= (const intvector_slice &rv) noexcept |
Implementation of addition and allocation operation. | |
intmatrix_subv & | operator-= (const int &c) noexcept |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator-= (const intvector &rv) noexcept |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator-= (const intvector_slice &rv) noexcept |
Implementation of subtraction and allocation operation. | |
intmatrix_subv & | operator/= (const int &c) noexcept |
Implementation of division and allocation operation. | |
intmatrix_subv & | operator= (const int &r) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intmatrix &m) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intmatrix_slice &m) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intmatrix_subv &rv) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intvector &v) noexcept |
Implementation of standard assigning operator. | |
intmatrix_subv & | operator= (const intvector_slice &v) noexcept |
Implementation of standard assigning operator. | |
int & | operator[] (const int &i) const noexcept |
Operator for accessing the single elements of the vector. | |
Friends | |
intmatrix_subv | Col (const intmatrix &m, const int &i) |
Returns one column of the matrix as a vector. | |
intmatrix_subv | Col (intmatrix &m, const int &i) |
Returns one column of the matrix as a vector. | |
int | Lb (const intmatrix_subv &rv) noexcept |
Returns the lower bound of the vector. | |
intmatrix_subv | Row (intmatrix &m, const int &i) |
Returns one row of the matrix as a vector. | |
int | Ub (const intmatrix_subv &rv) noexcept |
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.