std::sin
From cppreference.com
| Defined in header
<cmath>
|
||
| float sin( float arg );
|
||
| double sin( double arg );
|
||
| long double sin( long double arg );
|
||
| double sin( Integral arg );
|
(since C++11) | |
Computes sine of arg.
[edit] Parameters
| arg | - | value representing angle in radians, of a floating-point or Integral type |
[edit] Return value
Sine of arg in the range [-1 ; +1].
Domain error occurs if arg is infinite. NAN is returned in that case.
[edit] See also
| computes cosine (cos(x)) (function) |
|
| computes tangent (tan(x)) (function) |
|
| computes arc sine (arcsin(x)) (function) |
|
| computes sine of a complex number (sin(z)) (function template) |
|
| applies the function std::sin to each element of valarray (function template) |
|
|
C documentation for sin
|
|