Binomial coefficient

From Wikimization

Jump to: navigation, search

full definition, Matlab

binomial coefficient from M.J. Kronenburg [1]

Also see: Wolfram LaTeX: \alpha

full binomial coefficient definition including negative argument
full binomial coefficient definition including negative argument
function y = binomial(n, k)
if ~k || k == n
   y = 1;
elseif k == 1
   y = n;
elseif n < 0
   if k > 0
      y = (-1)^k*nchoosek(-n+k-1, k);
   elseif k <= n
      y = (-1)^(n-k)*nchoosek(-k-1, n-k);
   elseif n < k && k < 0
      y = 0;
   end
elseif n >= 0
   if k < 0 || k > n
      y = 0;
   else
      y = nchoosek(n,k);
   end
end
return
Personal tools