<< nargin | Core | nargout >> |
narginchk(minArgs, maxArgs) |
minimum number of accepted inputs (scalar integer value).
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 setting maxArgs to inf. For instance, use narginchk(2, inf) to throw an error if fewer than two inputs are supplied.
With an macro function:
narginchk(1, 2)
Version | Description |
---|---|
1.0.0 | initial version |
1.10.0 | narginchk(3, Inf) managed |
Allan CORNET