MULTINOMIAL

Multinomial coefficients.
3,1K descargas
Actualizado 31 ene 2005

Sin licencia

MULTINOMIAL(N, K1, K2, ..., Km) where N and Ki are numeric arrays of non-negative integers satisfying N = K1 + K2 + ... + Km, returns the multinomial coefficient N!/( K1!* K2! ... *Km!).

MULTINOMIAL(N, [K1 K2 ... Km]) when Ki's are all scalar, returns the same as MULTINOMIAL(N, K1, K2, ..., Km).

Non-integer input arguments are pre-rounded by FLOOR function.

EXAMPLES:
multinomial(8, 2, 6) returns 28
binomial(8, 2) returns 28

multinomial(8, 2, 3, 3) returns 560
multinomial(8, [2, 3, 3]) returns 560

multinomial([8 10], 2, [6 8]) returns [28 45]

Citar como

Mukhtar Ullah (2024). MULTINOMIAL (https://www.mathworks.com/matlabcentral/fileexchange/6156-multinomial), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R14
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Agradecimientos

Inspiración para: Multinomial Expansion

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0

a minor improvement: replace round with floor