We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc626ba commit ca6489fCopy full SHA for ca6489f
lib/node_modules/@stdlib/math/base/special/sincospi/lib/native.js
@@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
31
*
32
* @private
33
* @param {number} x - input value
34
-* @returns {Array<number>} two-element array containing sin(πx) and cos(πx)
+* @returns {Float64Array} two-element array containing sin(πx) and cos(πx)
35
36
* @example
37
* var v = sincospi( 0.0 );
lib/node_modules/@stdlib/math/base/special/sincospi/src/main.c
@@ -25,7 +25,6 @@
25
#include "stdlib/math/base/assert/is_infinite.h"
26
#include "stdlib/math/base/assert/is_nan.h"
27
#include "stdlib/constants/float64/pi.h"
28
-#include <stdint.h>
29
30
/**
* Simultaneously computes the sine and cosine of a number times π.
0 commit comments