@stdlib/math-base-special-sinpi

Compute sin(πx).

Usage no npm install needed!

<script type="module">
  import stdlibMathBaseSpecialSinpi from 'https://cdn.skypack.dev/@stdlib/math-base-special-sinpi';
</script>

README

sinpi

NPM version Build Status Coverage Status

Compute the sine of a number times π.

Installation

npm install @stdlib/math-base-special-sinpi

Usage

var sinpi = require( '@stdlib/math-base-special-sinpi' );

sinpi( x )

Computes sin(πx) more accurately than sin(pi*x), especially for large x.

var y = sinpi( 0.0 );
// returns 0.0

y = sinpi( 0.5 );
// returns 1.0

y = sinpi( 0.9 );
// returns ~0.309

y = sinpi( NaN );
// returns NaN

Examples

var linspace = require( '@stdlib/array-base-linspace' );
var sinpi = require( '@stdlib/math-base-special-sinpi' );

var x = linspace( -100.0, 100.0, 100 );

var i;
for ( i = 0; i < x.length; i++ ) {
    console.log( sinpi( x[ i ] ) );
}

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2022. The Stdlib Authors.