Special.Factorial Method
Returns the factorial of a positive integer.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The factorial of the integer.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static double Factorial(
int n
)
Parameters
- n Int32
- A positive integer.
Return Value
DoubleThe factorial of the integer.
Remarks
The factorial of a number n is the product of all integers from one up to and including n.
Exceptions
Overflow | the result is too large. |
Argument | n is less than zero. |