Special.HypergeometricU Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

HypergeometricU(Double, Double, Double) Returns the value of the confluent hypergeometric function of the second kind U.
HypergeometricU(Int32, Int32, Double) Returns the value of the confluent hypergeometric function of the second kind U for integer values of the parameters.

HypergeometricU(Double, Double, Double)

Returns the value of the confluent hypergeometric function of the second kind U.
C#
public static double HypergeometricU(
	double a,
	double b,
	double x
)

Parameters

a  Double
The first parameter for the numerator.
b  Double
">The parameter for the denominator.
x  Double
The point at which to evaluate the function.

Return Value

Double
The value of the confluent hypergeometric function of the second kind U(a;b;x).

HypergeometricU(Int32, Int32, Double)

Returns the value of the confluent hypergeometric function of the second kind U for integer values of the parameters.
C#
public static double HypergeometricU(
	int a,
	int b,
	double x
)

Parameters

a  Int32
The first parameter for the numerator.
b  Int32
">The parameter for the denominator.
x  Double
The point at which to evaluate the function.

Return Value

Double
The value of the confluent hypergeometric function of the second kind U(a;b;x).

See Also