Special.Hypergeometric U Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Hypergeometric | Returns the value of the confluent hypergeometric function of the second kind U. |
Hypergeometric | 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.
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
DoubleThe 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.
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
DoubleThe value of the confluent hypergeometric function of the second kind U(a;b;x).