sin

From cppreference.com
< c‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)(C99)(C99)
Exponential functions
(C99)
(C99)
(C99)
(C99)
Power functions
(C99)
(C99)
Trigonometric and hyperbolic functions
(C99)
(C99)
(C99)
Error and gamma functions
(C99)
(C99)
(C99)
(C99)
Nearest integer floating point operations
(C99)(C99)(C99)
(C99)
(C99)
(C99)(C99)(C99)
Floating point manipulation functions
(C99)(C99)
(C99)
(C99)
Classification
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)
Macro constants
 
Defined in header <math.h>
float       sinf( float arg );
(since C99)
double      sin( double arg );
long double sinl( long double arg );
(since C99)

Computes sine of arg

[edit] Parameters

arg - floating point value representing angle in radians

[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)