Click or drag to resize

SpecialFunctionsRisingFactorial Method

Computes the Rising Factorial (Pochhammer function) x -> (x)n, n>= 0. see: https://en.wikipedia.org/wiki/Falling_and_rising_factorials

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double RisingFactorial(
	double x,
	int n
)

Parameters

x  Double

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.SpecialFunctions.RisingFactorial(System.Double,System.Int32)"]

n  Int32

[Missing <param name="n"/> documentation for "M:Altaxo.Calc.SpecialFunctions.RisingFactorial(System.Double,System.Int32)"]

Return Value

Double
The real value of the Rising Factorial for x and n
See Also