narginchk(minArgs, maxArgs)
| Parameter | Description |
|---|---|
| minArgs | minimum number of accepted inputs (scalar integer value). |
| maxArgs | maximum number of accepted inputs (scalar integer value). |
narginchk checks the number of input arguments of an function.
To ensure that a minimum number of arguments is provided, while allowing an unlimited maximum number by settingmaxArgs to inf. For instance, usenarginchk(2, inf) to throw an error if fewer than two inputs are supplied.
narginchk(1, 2)
| Version | Description |
|---|---|
| 1.0.0 | initial version |
| 1.10.0 | narginchk(3, Inf) managed |