docs-v2/content/v2.0/reference/flux/functions/math/y0.md

618 B

title description menu weight
math.y0() function The math.y0() function returns the order-zero Bessel function of the second kind.
v2_0_ref
name parent
math.y0 Math
301

The math.y0() function returns the order-zero Bessel function of the second kind.

Output data type: Float

import "math"

math.y0(x: 3.14)

// Returns 0.3289375969127807

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.y0(x: +Inf) // Returns 0
math.y0(x: 0)    // Returns -Inf
math.y0(x: <0)   // Returns NaN
math.y0(x: NaN)  // Returns NaN