This function overloads cmath's sin function.
Parameters
- x
- valarray containing elements of a type for which the unary function sin is defined. Each element's value represents an angle, expressed in radians.
Return value
A valarray object with the sine values of the elements of x.Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
Output:
foo: 1.2 3.14 5 bar: 0.932039 0.00159265 -0.958924 |
See also
| sin (cmath) | Compute sine (function) |
| cos | Compute cosine of valarray elements (function template) |
| tan | Compute tangent of valarray elements (function template) |
