what is the MATLAB function to evaluate ncr value when n is real

what is the MATLAB function to evaluate ncr value when n is real

6 Commenti

Number of combinations??
You can easily transform the traditional factorial definition of combinations to use the GAMMA function, but as soon as you go for negative values you have a problem that GAMMA of negative values is infinite.
formula to find number of different combinations of n distinct objects taken r at a time
What result are you expecting for nCr(-3,pi) ?
expecting result for instances like nCr(0.5,2) , nCr(-3,2)
What numeric values do you expect for the cases nCr(0.5,2) and nCr(-3,2) ? Number of combinations is only defined for positive integers.

Accedi per commentare.

 Risposta accettata

If n and r are both non-negative integers, and n >= r, use:
nCr = nchoosek(n,r)
If n and/or r can be negative, you can use the more general form:
nCr = gamma(n+1)/(gamma(r+1)*gamma((n-r)+1))
If either n or r is an integer <= -1, then the nCr is not defined.

Più risposte (0)

Categorie

Scopri di più su Robust Control Toolbox in Centro assistenza e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by