R = factorial(M)
| Parameter | Description |
|---|---|
| M | a integer, real single or real double matrix. |
| Parameter | Description |
|---|---|
| R | result of factorial function. |
factorial computes the factorial function: the product of all integers values: 1 * 2 * ... * M
R = factorial([1:10])
R = factorial(int8(4))
| Version | Description |
|---|---|
| 1.0.0 | initial version |