Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Multinomial |
||
9 | { |
||
10 | /** |
||
11 | * MULTINOMIAL. |
||
12 | * |
||
13 | * Returns the ratio of the factorial of a sum of values to the product of factorials. |
||
14 | * |
||
15 | * @param mixed[] $args An array of mixed values for the Data Series |
||
16 | * |
||
17 | * @return float|string The result, or a string containing an error |
||
18 | */ |
||
19 | 8 | public static function funcMultinomial(...$args) |
|
42 |