We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947db16 commit 0832f27Copy full SHA for 0832f27
lib/node_modules/@stdlib/math/base/special/sinpi/lib/main.js
@@ -36,10 +36,7 @@ var PI = require( '@stdlib/constants/float64/pi' );
36
*
37
* ## Notes
38
39
-* - `sin(-x) = -sin(x)`
40
-* - `sin(+n) = +0`, where `n` is a positive integer
41
-* - `sin(-n) = -sin(+n) = -0`, where `n` is a positive integer
42
-* - `cos(-x) = cos(x)`
+* - The function computes `sin(πx)` more accurately than the obvious approach, especially for large `x`.
43
44
* @param {number} x - input value
45
* @returns {number} function value
0 commit comments