Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/numeric/math/sin"

From cppreference.com
< cpp‎ | numeric‎ | math
m (Shorten template names. Use {{lc}} where appropriate.)
m (Update links.)
Line 33: Line 33:
  
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc inc | cpp/numeric/math/dcl list cos}}
+
{{dsc inc | cpp/numeric/math/dsc cos}}
{{dsc inc | cpp/numeric/math/dcl list tan}}
+
{{dsc inc | cpp/numeric/math/dsc tan}}
{{dsc inc | cpp/numeric/math/dcl list asin}}
+
{{dsc inc | cpp/numeric/math/dsc asin}}
{{dsc inc | cpp/numeric/complex/dcl list sin}}
+
{{dsc inc | cpp/numeric/complex/dsc sin}}
{{dsc inc | cpp/numeric/valarray/dcl list sin}}
+
{{dsc inc | cpp/numeric/valarray/dsc sin}}
 
{{dsc end}}
 
{{dsc end}}
  

Revision as of 22:19, 31 May 2013

 
 
 
 
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

Parameters

arg - floating point value representing angle in radians

Return value

sine of arg in the range [-1 ; +1].

Domain error occurs if arg is infinite. NAN is returned in that case.

See also

(C++11)(C++11)
computes cosine (cos(x))
(function) [edit]
(C++11)(C++11)
computes tangent (tan(x))
(function) [edit]
(C++11)(C++11)
computes arc sine (arcsin(x))
(function) [edit]
computes sine of a complex number (sin(z))
(function template) [edit]
applies the function std::sin to each element of valarray
(function template) [edit]