Skip to content

Commit ec814c0

Browse files
committed
"updated fixture"
1 parent 7d4d17b commit ec814c0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/math/base/special/cosc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ int main( void ) {
169169
int i;
170170
for ( i = 0; i < 5; i++ ) {
171171
y = stdlib_base_cosc( x[ i ] );
172-
printf( "cosc(%3f) = %3f\n", x[ i ], y );
172+
printf( "cosc(%lf) = %lf\n", x[ i ], y );
173173
}
174174
}
175175
```

lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ int main( void ) {
2626
int i;
2727
for ( i = 0; i < 5; i++ ) {
2828
y = stdlib_base_cosc( x[ i ] );
29-
printf( "cosc( %3f ) = %3f\n", x[ i ], y );
29+
printf( "cosc( %lf ) = %lf\n", x[ i ], y );
3030
}
3131
}

lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function cosc( x ) {
8080
if ( x === 0.0 ) {
8181
return 0.0;
8282
}
83-
return parseFloat((( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x).toFixed(3));
83+
return ( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x ;
8484
}
8585

8686

lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)