Compute the Bessel function of the first kind of order one.
The Bessel function of the first kind of order one is defined as
var j1 = require( '@stdlib/math/base/special/besselj1' );
Computes the Bessel function of the first kind of order one at x
.
var v = j1( 0.0 );
// returns 0.0
v = j1( 1.0 );
// returns ~0.440
v = j1( Infinity );
// returns 0.0
v = j1( -Infinity );
// returns 0.0
v = j1( NaN );
// returns NaN
var randu = require( '@stdlib/random/base/randu' );
var j1 = require( '@stdlib/math/base/special/besselj1' );
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = randu() * 10.0;
console.log( 'j1(%d) = %d', x, j1( x ) );
}
#include "stdlib/math/base/special/j1.h"
Computes the Bessel function of the first kind of order one at x
.
double out = stdlib_base_j1( 0.0 );
// returns 0.0
out = stdlib_base_j1( 1.0 );
// returns ~0.440
The function accepts the following arguments:
- x:
[in] double
input value.
double stdlib_base_j1( const double x );
#include "stdlib/math/base/special/j1.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 0.0, 0.005, 3.14, 10.0, 51.125, 99.99, 100.0 };
double v;
int i;
for ( i = 0; i < 7; i++ ) {
v = stdlib_base_j1( x[ i ] );
printf( "j1(%lf) = %lf\n", x[ i ], v );
}
}
@stdlib/math/base/special/besselj0
: compute the Bessel function of the first kind of order zero.@stdlib/math/base/special/bessely0
: compute the Bessel function of the second kind of order zero.@stdlib/math/base/special/bessely1
: compute the Bessel function of the second kind of order one.