@stdlib/math-base-special-sinc
Advanced tools
Compute the normalized cardinal sine of a number.
Weekly downloads
Readme
Compute the cardinal sine of a number.
The normalized cardinal sine function is defined as
for any real number x
.
npm install @stdlib/math-base-special-sinc
var sinc = require( '@stdlib/math-base-special-sinc' );
Computes the normalized cardinal sine of a number
.
var v = sinc( 0.5 );
// returns ~0.637
v = sinc( -1.2 );
// returns ~-0.156
v = sinc( 0.0 );
// returns 1.0
v = sinc( NaN );
// returns NaN
var linspace = require( '@stdlib/array-base-linspace' );
var sinc = require( '@stdlib/math-base-special-sinc' );
var x = linspace( -5.0, 5.0, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( sinc( x[ i ] ) );
}
@stdlib/math/base/special/sin
: compute the sine of a number.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.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.
Compute the normalized cardinal sine of a number.
The npm package @stdlib/math-base-special-sinc receives a total of 134 weekly downloads. As such, @stdlib/math-base-special-sinc popularity was classified as not popular.
We found that @stdlib/math-base-special-sinc demonstrated a healthy version release cadence and project activity. It has 4 open source maintainers collaborating on the project.