y0

Computes Bessel function of x of the second kind of order 0.

Library:LibC
Classification:POSIX
Service:Math

Syntax

  #include <math.h>
  
  double y0 (
     double   x);
  

Parameters

x

Specifies the number whose Bessel function is to be derived.

Return Values

If successful, returns the result of the desired Bessel function of the argument x.

If x is negative, sets errno to EDOM, prints a DOMAIN error message to stderr, and returns HUGE_VAL.

See Also