Thyra::VectorBase objects and allowing for operator-overloading linear algebra.
More...
#include <Thyra_VectorDecl.hpp>
Inheritance diagram for Thyra::Vector< Scalar >:
Product std::vector operations | |
| void | setBlock (int i, const ConstVector< Scalar > &v) |
| set block | |
| void | setBlock (int i, const Vector< Scalar > &v) |
| set block | |
| Vector< Scalar > | getBlock (int i) |
| get modifiable block | |
Public Member Functions | |
| Vector (const VectorSpace< Scalar > &space) | |
| Construct from a std::vector space . | |
| template<class Node1, class Node2> | |
| Vector (const Thyra::LC2< Scalar, Node1, Node2 > &x) | |
| Construct a std::vector from a 2-term LC. | |
| template<class Node> | |
| Vector (const Thyra::OpTimesLC< Scalar, Node > &x) | |
| Construct a std::vector from an operator times a linear combination. | |
| template<class Node1, class Node2> | |
| Vector & | operator= (const Thyra::LC2< Scalar, Node1, Node2 > &x) |
| Assign a linear combination of vectors to this std::vector. | |
| template<class Node1, class Node2> | |
| Vector & | operator+= (const Thyra::LC2< Scalar, Node1, Node2 > &x) |
| Add and assign a linear combination of vectors to this std::vector. | |
| template<class Node> | |
| Vector & | operator= (const Thyra::OpTimesLC< Scalar, Node > &x) |
| Assign a scaled linear combination to this std::vector. | |
| template<class Node> | |
| Vector & | operator+= (const Thyra::OpTimesLC< Scalar, Node > &x) |
| Add and assign a scaled linear combination to this std::vector. | |
| Vector< Scalar > & | acceptCopyOf (const ConstVector< Scalar > &x) |
| Scalar | operator[] (Index globalIndex) const |
| | |
| IndexObject | operator[] (Index globalIndex) |
| Index operator that allows changes to the element. | |
Related Functions | |
| (Note that these are not member functions.) | |
| OpTimesLC< Scalar, Thyra::ConstVector< Scalar > > | operator * (const Scalar &alpha, const Thyra::ConstVector< Scalar > &x) |
| Overloaded multiplication operator for scalar times std::vector. | |
| OpTimesLC< Scalar, Thyra::ConstVector< Scalar > > | operator * (const Thyra::ConstVector< Scalar > &x, const Scalar &alpha) |
| Overloaded multiplication operator for scalar times std::vector. | |
| Thyra::Vector< Scalar > | formVector (const Thyra::Vector< Scalar > &x) |
| Form a Vector from this object. | |
| Vector< Scalar > | dotStar (const Converter< Scalar, ConstVector< Scalar > > &x, const Converter< Scalar, ConstVector< Scalar > > &y) |
| return[i] = x[i] * y[i]. | |
| Vector< Scalar > | dotSlash (const Converter< Scalar, ConstVector< Scalar > > &x, const Converter< Scalar, ConstVector< Scalar > > &y) |
| return[i] = x[i] / y[i]. | |
| Scalar | maxloc (const Converter< Scalar, ConstVector< Scalar > > &x, Index &index) |
| Return the max of a vector and its location. | |
| Scalar | minloc (const Converter< Scalar, ConstVector< Scalar > > &x, Index &index) |
| Return the min of a vector and its location. | |
| Scalar | minloc (const Converter< Scalar, ConstVector< Scalar > > &x, const Scalar &bound, Index &index) |
| Return the minimum element and its location (lowest index). | |
| Scalar | maxloc (const Converter< Scalar, ConstVector< Scalar > > &x, const Scalar &bound, Index &index) |
| Return the maxium element and its location (lowest index). | |
| void | scaleInto (const Converter< Scalar, ConstVector< Scalar > > &x, const Scalar &alpha, Vector< Scalar > &result) |
| result = alpha*x. | |
| void | scale (Vector< Scalar > &x, const Scalar &alpha) |
| x = alpha*x. | |
| void | axpy (const Scalar &alpha, const Converter< Scalar, ConstVector< Scalar > > &x, Vector< Scalar > &y) |
| y = alpha*x + y. | |
Thyra::VectorBase objects and allowing for operator-overloading linear algebra.
|
||||||||||
|
Construct from a std::vector space .
|
|
||||||||||||||
|
Construct a std::vector from a 2-term LC.
|
|
||||||||||||||
|
Construct a std::vector from an operator times a linear combination.
|
|
||||||||||||||
|
Assign a linear combination of vectors to this std::vector.
|
|
||||||||||||||
|
Add and assign a linear combination of vectors to this std::vector.
|
|
||||||||||||||
|
Assign a scaled linear combination to this std::vector.
|
|
||||||||||||||
|
Add and assign a scaled linear combination to this std::vector.
|
|
||||||||||
|
Write the contents of another std::vector into this std::vector |
|
||||||||||
|
Reimplemented from Thyra::ConstVector< Scalar >. |
|
||||||||||
|
Index operator that allows changes to the element.
Note: The object returned is of type |
|
||||||||||||||||
|
set block
|
|
||||||||||||||||
|
set block
|
|
||||||||||
|
get modifiable block
|
|
||||||||||||||||
|
Overloaded multiplication operator for scalar times std::vector.
|
|
||||||||||||||||
|
Overloaded multiplication operator for scalar times std::vector.
|
|
||||||||||
|
Form a Vector from this object. For Vector, the operation is simply a pass-through. |
|
||||||||||||||||
|
return[i] = x[i] * y[i].
|
|
||||||||||||||||
|
return[i] = x[i] / y[i].
|
|
||||||||||||||||
|
Return the max of a vector and its location.
|
|
||||||||||||||||
|
Return the min of a vector and its location.
|
|
||||||||||||||||||||
|
Return the minimum element and its location (lowest index). <scalar> |
|
||||||||||||||||||||
|
Return the maxium element and its location (lowest index).
|
|
||||||||||||||||||||
|
result = alpha*x.
|
|
||||||||||||||||
|
x = alpha*x.
|
|
||||||||||||||||||||
|
y = alpha*x + y.
|
1.3.9.1