permutationLn function

double permutationLn(
  1. num n,
  2. num m
)

Returns the logarithm of the permutations based on the gammaLn function.

Implementation

double permutationLn(num n, num m) => factorialLn(n) - factorialLn(n - m);