Evaluates the Kelvin function of the second kind, kei, of order zero.
#include <imsl.h>
float imsl_f_kelvin_kei0 (float x)
The type double function is imsl_d_kelvin_kei0.
float x
(Input)
Argument for which the function value is desired.
The Kelvin function of the second kind, kei, of order zero evaluated at x.
The modified Kelvin function kei0(x) is defined to be ÁK0(xepi/4). The Bessel function K0(x) is defined

The function imsl_f_kelvin_kei0 is based on the work of Burgoyne (1963).
If x < 0, NaN (Not a Number) is returned. If x ³ 119, zero is returned.
In this example, kei0(0.4) is evaluated.
#include <imsl.h>
main()
{
float x = 0.4;
float ans;
x =
imsl_f_kelvin_kei0 (x);
printf
("kei0(0.4) = %f\n", x);
}
kei0(0.4) = -0.703800
|
Visual Numerics, Inc. PHONE: 713.784.3131 FAX:713.781.9260 |