ILNumerics Ultimate VS

ILMathgammaIncomplete Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Evaluates the lower incomplete Gamma function at a given point. For more details about this function, see Wikipedia - Incomplete gamma function.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<double> gammaIncomplete(
	InArray<double> a,
	InArray<double> x
)

Parameters

a
Type: ILNumericsInArrayDouble
The parameter of Gamma.
x
Type: ILNumericsInArrayDouble
The point where the function is evaluated.

Return Value

Type: RetArrayDouble
The value of the lower incomplete Gamma function.
Remarks

  • If any of the input arrays is null, an ArgumentNullException will be thrown.
  • If x is empty, an empty array will be returned.
  • If any of the given points is NaN or Infinity an ArgumentException will be thrown.
  • If any elements in x is negative, an ArgumentException will be thrown.

[ILNumerics Computing Engine]

See Also

Reference