Functions | |
| template<class Scalar> | |
| Scalar | Thyra::min (const VectorBase< Scalar > &x) |
Min element: result = min{ x(i), i = 0...x.space()->dim()-1 } . | |
| template<class Scalar> | |
| void | Thyra::min (const VectorBase< Scalar > &x, Scalar *maxEle, Index *maxIndex) |
Min element and its index: Returns maxEle = x(k) and maxIndex = k such that x(k) <= x(i) for all i = 0...x.space()->dim()-1. | |
| template<class Scalar> | |
| void | Thyra::minGreaterThanBound (const VectorBase< Scalar > &x, const Scalar &bound, Scalar *minEle, Index *minIndex) |
Minimum element greater than some bound and its index: Returns minEle = x(k) and minIndex = k such that x(k) <= x(i) for all i where x(i) > bound. | |
| template<class Scalar> | |
| Scalar | Thyra::max (const VectorBase< Scalar > &x) |
Max element: result = max{ x(i), i = 1...n } . | |
| template<class Scalar> | |
| void | Thyra::max (const VectorBase< Scalar > &x, Scalar *maxEle, Index *maxIndex) |
Max element and its index: Returns maxEle = x(k) and maxIndex = k such that x(k) >= x(i) for i = 0...x.space()->dim()-1. | |
| template<class Scalar> | |
| void | Thyra::maxLessThanBound (const VectorBase< Scalar > &x, const Scalar &bound, Scalar *maxEle, Index *maxIndex) |
Max element less than bound and its index: Returns maxEle = x(k) and maxIndex = k such that x(k) >= x(i) for all i where x(i) < bound. | |
|
||||||||||
|
Min element:
Definition at line 454 of file Thyra_VectorStdOps.hpp. |
|
||||||||||||||||||||
|
Min element and its index: Returns
Definition at line 463 of file Thyra_VectorStdOps.hpp. |
|
||||||||||||||||||||||||
|
Minimum element greater than some bound and its index: Returns
Postconditions:
Definition at line 475 of file Thyra_VectorStdOps.hpp. |
|
||||||||||
|
Max element:
Definition at line 487 of file Thyra_VectorStdOps.hpp. |
|
||||||||||||||||||||
|
Max element and its index: Returns
Definition at line 497 of file Thyra_VectorStdOps.hpp. |
|
||||||||||||||||||||||||
|
Max element less than bound and its index: Returns
Postconditions:
Definition at line 509 of file Thyra_VectorStdOps.hpp. |
1.3.9.1