C-XSC - A C++ Class Library for Extended Scientific Computing 2.5.4
|
The Multiple-Precision Data Type lx_ivector. More...
#include <lx_ivector.hpp>
Public Member Functions | |
lx_ivector () noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const interval &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const l_interval &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const l_real &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const lx_interval &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const lx_ivector &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const lx_real &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (const real &) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector (int i) noexcept | |
lx_ivector (int i1, int i2) noexcept | |
Constructor of class lx_ivector. | |
lx_ivector & | operator= (const interval &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const l_interval &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const l_real &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const lx_interval &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const lx_ivector &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const lx_real &) noexcept |
Implementation of standard assigning operator. | |
lx_ivector & | operator= (const real &) noexcept |
Implementation of standard assigning operator. | |
const lx_interval & | operator[] (const int &i) const noexcept |
Operator for accessing the single elements of the vector. | |
lx_interval & | operator[] (const int &i) noexcept |
Operator for accessing the single elements of the vector. | |
Friends | |
int | Lb (const lx_ivector &a) noexcept |
Returns the lower bound of the vector. | |
void | Resize (lx_ivector &rv, int lb, int ub) |
Resizes the vector. | |
void | Resize (lx_ivector &rv, int len) |
Resizes the vector. | |
lx_ivector & | SetLb (lx_ivector &a, int l) noexcept |
Sets the lower bound of the vector. | |
lx_ivector & | SetUb (lx_ivector &a, int u) noexcept |
Sets the upper bound of the vector. | |
int | Ub (const lx_ivector &a) noexcept |
Returns the upper bound of the vector. | |
int | VecLen (const lx_ivector &a) noexcept |
Returns the dimension of the vector. | |
The Multiple-Precision Data Type lx_ivector.
The vectors of C-XSC are one dimensional arrays of the corresponding scalar base type.
Definition at line 42 of file lx_ivector.hpp.
|
inlinenoexcept |
Constructor of class lx_ivector.
Creation of a variable of type lx_ivector with length
Definition at line 31 of file lx_ivector.inl.
|
inlineexplicitnoexcept |
i | Dimension of vector Creation of a variable of type lx_ivector with length ![]() ![]() ![]() |
Definition at line 39 of file lx_ivector.inl.
|
inlineexplicitnoexcept |
Constructor of class lx_ivector.
i1 | Starting dimension of vector |
i2 | Ending dimension of vector |
Creation of a variable of type lx_ivector with length
Definition at line 50 of file lx_ivector.inl.