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