std::acos(std::valarray)
From cppreference.com
Template:cpp/numeric/valarray/sidebar
Defined in header <valarray>
|
||
template< class T > valarray<T> acos( const valarray<T>& va ); |
||
For each element in va
computes arc cosine of the value of the element. This is done by applying Template:cpp (unqualified) function.
Contents |
Parameters
va | - | value array to apply the operation to |
Return value
Value array containing arc cosines of the values in va
.
Notes
Template:cpp/numeric/valarray/notes