C-XSC - A C++ Class Library for Extended Scientific Computing
2.5.4
|
Helper class for slices of sparse vectors. More...
#include <scvector.hpp>
Public Member Functions | |
real | density () const |
Returns the density of the vector slice (the number of non zero elements divided by the number of elements) | |
int | get_nnz () const |
Returns the number of non zero elements of this vector slice (note that this includes explicitly stored zeros) | |
const complex | operator() (const int i) const |
Returns a copy of the i-th (according to the currently used indexing) element of the vector slice. | |
scvector_slice & | operator*= (const real &s) |
Operator for multiplication with a scalar, result is assigned to the vector slice. | |
scvector_slice & | operator*= (const complex &s) |
Operator for multiplication with a scalar, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const rvector &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const cvector &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const rvector_slice &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const cvector_slice &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const srvector &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const scvector &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const srvector_slice &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator+= (const scvector_slice &v) |
Operator for element-wise addition with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const rvector &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const cvector &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const rvector_slice &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const cvector_slice &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const srvector &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const scvector &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const srvector_slice &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator-= (const scvector_slice &v) |
Operator for element-wise subtraction with a vector, result is assigned to the vector slice. | |
scvector_slice & | operator/= (const real &s) |
Operator for division of each element of the vector slice with a scalar, result is assigned to the vector slice. | |
scvector_slice & | operator/= (const complex &s) |
Operator for division of each element of the vector slice with a scalar, result is assigned to the vector slice. | |
scvector_slice & | operator= (const real &v) |
Assigns v to all elements of the vector slice. | |
scvector_slice & | operator= (const complex &v) |
Assigns v to all elements of the vector slice. | |
scvector_slice & | operator= (const srvector_slice &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const scvector_slice &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const srvector &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const scvector &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const rvector &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const cvector &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const rvector_slice &v) |
Overwrite the vector slice with the elements of v. | |
scvector_slice & | operator= (const cvector_slice &v) |
Overwrite the vector slice with the elements of v. | |
complex & | operator[] (const int i) |
Returns a reference to the i-th (according to the currently used indexing) element of the vector slice. | |
complex | operator[] (const int i) const |
Returns a copy of the i-th (according to the currently used indexing) element of the vector slice. | |
Friends | |
srvector | Im (const scvector_slice &) |
Returns the imaginary part of the complex vector slice. | |
int | Lb (const scvector_slice &) |
Returns the lower index bound of the vector slice v. | |
srvector | Re (const scvector_slice &) |
Returns the real part of the complex vector slice. | |
int | Ub (const scvector_slice &) |
Returns the upper index bound of the vector slice v. | |
int | VecLen (const scvector_slice &) |
Returns the length of the vector slice. |
Helper class for slices of sparse vectors.
This class stores a reference to a sparse vector and operates on a slice of it. This class is used internally by C-XSC, it should normally not be necessary for the user to use it explicitly.
Definition at line 1245 of file scvector.hpp.
const complex cxsc::scvector_slice::operator() | ( | const int | i | ) | const [inline] |
Returns a copy of the i-th (according to the currently used indexing) element of the vector slice.
If the i-th element is explicitly stored, a copy of this value is returned. Otherwise, 0.0 will be returned. Unlike with the []-operator, the data structure remains unchanged either way. Thus this operator should always be used for read-only access to the elements of a sparse vector slice.
Definition at line 1329 of file scvector.hpp.
complex& cxsc::scvector_slice::operator[] | ( | const int | i | ) | [inline] |
Returns a reference to the i-th (according to the currently used indexing) element of the vector slice.
If the i-th element is explicitly stored, a reference to the value is returned. If is not explicitly stored, it will be added to the data structure as a zero element. The returned reference then points to this new element. Hence the []-operator should only be used for write access to the elements of a sparse vector. Use the ()-operator for read access.
Definition at line 1294 of file scvector.hpp.
complex cxsc::scvector_slice::operator[] | ( | const int | i | ) | const [inline] |
Returns a copy of the i-th (according to the currently used indexing) element of the vector slice.
If the i-th element is explicitly stored, a copy to the value is returned. If is not explicitly stored, zero will be returned. This is the const-version of this operator, added for convenience. It is suggested to use the ()-operator for read access.
Definition at line 1317 of file scvector.hpp.