Binomial coefficients
k = bincoef(n,N)
scalar or matrix with common size, such that 0<=n<=N.
0<=n<=N
matrix of binomial coefficients
computes a matrix of binomial coefficients
Gamma(N+1)./(Gamma(n+1).*Gamma(N-n+1))
co=bincoef(0:4,4) P=poly(co,'x','coef') norm(roots(P) + ones(4,1))