Namespaces
Variants
Views
Actions

std::acos(std::valarray)

From cppreference.com
< cpp‎ | numeric‎ | valarray
Revision as of 12:00, 19 March 2012 by P12bot (Talk | contribs)

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

Possible implementation

Template:eq fun cpp

Example

Template:example cpp