- `narginchk (MINARGS, MAXARGS)`

Check that the current function was called with at least `MINARGS` and at most
`MAXARGS` input arguments.

If the number of input arguments is outside the accepted range, generate an
error.

See also: `nargin`, `nargoutchk`.

### References

- https://www.mathworks.com/help/matlab/ref/narginchk.html
- https://octave.sourceforge.io/octave/function/narginchk.html
