kelvinBei0

Evaluates the Kelvin function of the first kind, bei, of order zero.

Synopsis

kelvinBei0 (x)

Required Arguments

float x (Input)
Argument for which the function value is desired.

Return Value

The Kelvin function of the first kind, bei, of order zero evaluated at x.

Description

The Kelvin function bei0(x) is defined to be J0(xe3π/4). The Bessel function J0(x) is defined

J0(x)=1ππ0cos(xsinθ)dθ

The function kelvinBei0 is based on the work of Burgoyne (1963).

In kelvinBei0, x must be less than 119.

Example

In this example, bei0(0.4) is evaluated.

from __future__ import print_function
from numpy import *
from pyimsl.math.kelvinBei0 import kelvinBei0

x = 0.4
ans = kelvinBei0(x)
print("bei0(0.4) = %f" % (ans))

Output

bei0(0.4) = 0.039998