Evaluates the derivative of the Kelvin function of the second kind, ker, of order zero.
#include <imsl.h>
float imsl_f_kelvin_ker0_derivative (float x)
The type double function is imsl_d_kelvin_ker0_derivative.
float x
(Input)
Argument for which the function value is desired.
The derivative of the Kelvin function of the second kind, ker, of order zero evaluated at x.
The function ker0′(x) is defined to be

The function imsl_f_kelvin_ker0_derivative 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, ker0′(0.6) is evaluated.
#include <imsl.h>
int main()
{
float x = 0.6;
float ans;
x = imsl_f_kelvin_ker0_derivative (x);
printf ("ker0’(0.6) = %f\n", x);
}
ker0’(0.6) = -1.456538