0.2.1 • Published 3 months ago

@stdlib/math-base-special-bessely1 v0.2.1

Weekly downloads
-
License
Apache-2.0 AND BS...
Repository
github
Last release
3 months ago

y1

NPM version Build Status Coverage Status

Compute the Bessel function of the second kind of order one.

The Bessel function of the second kind of order one is defined as

Installation

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

Usage

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

y1( x )

Computes the Bessel function of the second kind of order one at x.

var v = y1( 0.0 );
// returns -Infinity

v = y1( 1.0 );
// returns ~-0.781

v = y1( Infinity );
// returns 0.0

If x < 0 or x is NaN, the function returns NaN.

var v = y1( -1.0 );
// returns NaN

v = y1( -Infinity );
// returns NaN

v = y1( NaN );
// returns NaN

Examples

var randu = require( '@stdlib/random-base-randu' );
var y1 = require( '@stdlib/math-base-special-bessely1' );

var x;
var i;

for ( i = 0; i < 100; i++ ) {
    x = randu() * 10.0;
    console.log( 'y1(%d) = %d', x, y1( x ) );
}

See Also


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


Copyright

Copyright © 2016-2024. The Stdlib Authors.