Go to the source code of this file.
Namespaces | |
| namespace | concepts |
Macros | |
| #define | ArrayProduct_D 0 |
Functions | |
| template<typename F > | |
| F | std::product (const concepts::Array< F > &a) |
Returns the product of values in the array a. | |
| template<typename F > | |
| F | std::product (const concepts::Array< F > &a, uint j) |
Returns the product of values in the array a without index j. | |
| template<typename F > | |
| F | std::product (const concepts::Array< F > &a, uint j, uint k) |
| template<typename F > | |
| concepts::Array< F > | std::pow (const concepts::Array< F > &a, const F e) |
Returns the power of values in the array a with e. | |
| template<typename F > | |
| concepts::Array< F > | std::abs (const concepts::Array< F > &a) |
Returns an array with the absolute values of array a. | |
| template<typename F > | |
| F | std::min (const concepts::Array< F > &a) |
Returns the minimal value in array a. | |
| template<typename F > | |
| F | std::max (const concepts::Array< F > &a) |
Returns the maximal value in array a. | |
| template<class F > | |
| Array< F > | concepts::makeArray (std::initializer_list< F > list) |
| void | concepts::chebychevPoints (concepts::Array< Real > &p) |
| template<class F , uint dim> | |
| Array< F > | concepts::componentArray (const Array< Point< F, dim > > &a, uint i) |
Operation to arrays
Definition in file arrayOp.hh.
| #define ArrayProduct_D 0 |
Definition at line 15 of file arrayOp.hh.
| concepts::Array< F > std::abs | ( | const concepts::Array< F > & | a | ) |
Returns an array with the absolute values of array a.
Definition at line 67 of file arrayOp.hh.
| F std::max | ( | const concepts::Array< F > & | a | ) |
Returns the maximal value in array a.
Definition at line 91 of file arrayOp.hh.
| F std::min | ( | const concepts::Array< F > & | a | ) |
Returns the minimal value in array a.
Definition at line 78 of file arrayOp.hh.
| concepts::Array< F > std::pow | ( | const concepts::Array< F > & | a, |
| const F | e | ||
| ) |
Returns the power of values in the array a with e.
Definition at line 56 of file arrayOp.hh.
| F std::product | ( | const concepts::Array< F > & | a | ) |
Returns the product of values in the array a.
Definition at line 23 of file arrayOp.hh.
| F std::product | ( | const concepts::Array< F > & | a, |
| uint | j | ||
| ) |
Returns the product of values in the array a without index j.
Definition at line 32 of file arrayOp.hh.
| F std::product | ( | const concepts::Array< F > & | a, |
| uint | j, | ||
| uint | k | ||
| ) |
Returns the product of values in the array a without indices j and k.
Definition at line 44 of file arrayOp.hh.