Compute the Bessel function of the second kind of order one.
The Bessel function of the second kind of order one is defined as
var y1 = require( '@stdlib/math/base/special/bessely1' );
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
var uniform = require( '@stdlib/random/array/uniform' );
var logEachMap = require( '@stdlib/console/log-each-map' );
var bessely1 = require( '@stdlib/math/base/special/bessely1' );
var opts = {
'dtype': 'float64'
};
var x = uniform( 100, 0.0, 100.0, opts );
logEachMap( 'bessely1(%0.4f) = %0.4f', x, bessely1 );
@stdlib/math/base/special/besselj0
: compute the Bessel function of the first kind of order zero.@stdlib/math/base/special/besselj1
: compute the Bessel function of the first kind of order one.@stdlib/math/base/special/bessely0
: compute the Bessel function of the second kind of order zero.