C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
|
The Data Type rvector_slice. More...
#include <rvector.hpp>
Public Member Functions | |
rvector_slice & | operator() () noexcept |
Operator for accessing the whole vector. | |
rvector_slice | operator() (const int &i) noexcept |
Operator for accessing a part of the vector. | |
rvector_slice | operator() (const int &i1, const int &i2) noexcept |
Operator for accessing a part of the vector. | |
rvector_slice & | operator*= (const real &r) noexcept |
Implementation of multiplication and allocation operation. | |
rvector_slice & | operator*= (const rmatrix &m) noexcept |
Implementation of multiplication and allocation operation. | |
rvector_slice & | operator+= (const rvector &rv) noexcept |
Implementation of addition and allocation operation. | |
rvector_slice & | operator+= (const rvector_slice &sl2) noexcept |
Implementation of addition and allocation operation. | |
rvector_slice & | operator+= (const srvector &rv) |
Implementation of addition and allocation operation. | |
rvector_slice & | operator+= (const srvector_slice &rv) |
Implementation of addition and allocation operation. | |
rvector_slice & | operator-= (const rvector &rv) noexcept |
Implementation of subtraction and allocation operation. | |
rvector_slice & | operator-= (const rvector_slice &sl2) noexcept |
Implementation of subtraction and allocation operation. | |
rvector_slice & | operator-= (const srvector &rv) |
Implementation of addition and allocation operation. | |
rvector_slice & | operator-= (const srvector_slice &rv) |
Implementation of addition and allocation operation. | |
rvector_slice & | operator/= (const real &r) noexcept |
Implementation of division and allocation operation. | |
rvector_slice & | operator= (const real &r) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const rmatrix &m) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const rmatrix_slice &m) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const rmatrix_subv &) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const rvector &rv) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const rvector_slice &sl) noexcept |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const srvector &rv) |
Implementation of standard assigning operator. | |
rvector_slice & | operator= (const srvector_slice &rv) |
Implementation of standard assigning operator. | |
real & | operator[] (const int &i) const noexcept |
Operator for accessing the single elements of the vector (read-only) | |
real & | operator[] (const int &i) noexcept |
Operator for accessing the single elements of the vector. | |
rvector_slice (const rvector_slice &a) noexcept | |
Constructor of class rvector_slice. | |
rvector_slice (rvector &a, const int &lb, const int &ub) noexcept | |
Constructor of class rvector_slice. | |
rvector_slice (rvector_slice &a, const int &lb, const int &ub) noexcept | |
Constructor of class rvector_slice. | |
Friends | |
int | Lb (const rvector_slice &sl) noexcept |
Returns the lower bound of the vector. | |
int | Ub (const rvector_slice &sl) noexcept |
Returns the upper bound of the vector. | |
int | VecLen (const rvector_slice &sl) noexcept |
Returns the dimension of the vector. | |
The Data Type rvector_slice.
This data type represents a partial rvector.
Definition at line 1063 of file rvector.hpp.