|
derived_type & | operator= (const value_type &k) |
| Assignment operator for scalar.
|
|
value_type & | operator[] (size_type i) |
| random access
|
|
size_type | size () const |
| size method
|
|
Iterator | begin () |
| begin iterator
|
|
Iterator | end () |
| end iterator
|
|
Iterator | beforeEnd () |
|
Iterator | beforeBegin () |
|
Iterator | find (size_type i) |
| return iterator to given element or end()
|
|
ConstIterator | begin () const |
| begin ConstIterator
|
|
ConstIterator | end () const |
| end ConstIterator
|
|
ConstIterator | beforeEnd () const |
|
ConstIterator | beforeBegin () const |
|
ConstIterator | find (size_type i) const |
| return iterator to given element or end()
|
|
template<class Other > |
derived_type & | operator+= (const DenseVector< Other > &y) |
| vector space addition
|
|
template<class Other > |
derived_type & | operator-= (const DenseVector< Other > &y) |
| vector space subtraction
|
|
template<class Other > |
derived_type | operator+ (const DenseVector< Other > &b) const |
| Binary vector addition.
|
|
template<class Other > |
derived_type | operator- (const DenseVector< Other > &b) const |
| Binary vector subtraction.
|
|
derived_type & | operator+= (const value_type &k) |
| vector space add scalar to all comps
|
|
derived_type & | operator-= (const value_type &k) |
| vector space subtract scalar from all comps
|
|
derived_type & | operator*= (const value_type &k) |
| vector space multiplication with scalar
|
|
derived_type & | operator/= (const value_type &k) |
| vector space division by scalar
|
|
template<class Other > |
bool | operator== (const DenseVector< Other > &y) const |
| Binary vector comparison.
|
|
template<class Other > |
bool | operator!= (const DenseVector< Other > &y) const |
| Binary vector incomparison.
|
|
template<class Other > |
derived_type & | axpy (const value_type &a, const DenseVector< Other > &y) |
| vector space axpy operation ( *this += a y )
|
|
template<class Other > |
PromotionTraits< field_type, typenameDenseVector< Other >::field_type >::PromotedType | operator* (const DenseVector< Other > &y) const |
| indefinite vector dot product \left (x^T \cdot y \right) which corresponds to Petsc's VecTDot More...
|
|
template<class Other > |
PromotionTraits< field_type, typenameDenseVector< Other >::field_type >::PromotedType | dot (const DenseVector< Other > &y) const |
| vector dot product \left (x^H \cdot y \right) which corresponds to Petsc's VecDot More...
|
|
FieldTraits< value_type >::real_type | one_norm () const |
| one norm (sum over absolute values of entries)
|
|
FieldTraits< value_type >::real_type | one_norm_real () const |
| simplified one norm (uses Manhattan norm for complex values)
|
|
FieldTraits< value_type >::real_type | two_norm () const |
| two norm sqrt(sum over squared values of entries)
|
|
FieldTraits< value_type >::real_type | two_norm2 () const |
| square of two norm (sum over squared values of entries), need for block recursion
|
|
FieldTraits< value_type >::real_type | infinity_norm () const |
| infinity norm (maximum of absolute values of entries)
|
|
FieldTraits< value_type >::real_type | infinity_norm_real () const |
| simplified infinity norm (uses Manhattan norm for complex values)
|
|
size_type | N () const |
| number of blocks in the vector (are of size 1 here)
|
|
size_type | dim () const |
| dimension of the vector space
|
|