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 7db7935 commit 0dfdd11Copy full SHA for 0dfdd11
lib/node_modules/@stdlib/math/base/special/sinf/src/main.c
@@ -105,7 +105,7 @@ float stdlib_base_sinf( const float x ) {
105
if ( ix < SMALL_WORD ) {
106
return x;
107
}
108
- return stdlib_base_kernel_sinf( x );
+ return stdlib_base_kernel_sinf( (double)x );
109
110
// Case: |x| ~<= 5π/4
111
if ( ix <= FIVE_PIO4_WORD ) {
0 commit comments