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.3572.0 (4.8.3572.0)
Syntax
C#
public static double RisingFactorial(
	double x,
	int n
)

Parameters

x  Double
The base value.
n  Int32
The non-negative integer order.

Return Value

Double
The real value of the rising factorial (x)_{n}.
See Also