checkAvoidVararginout

Checks if the code uses varargin and varargout as variable length input and output argument list. Avoiding the use of these variable length arguments increases the readability of the code.

Configurable parameters

  • AvoidVarargin (boolean) : Set to true to report the usage of varargin, the default value for this parameter is true.

  • AvoidVarargout (boolean): Set to true to report the use of varargin, the default value for this paramter is true.

Exemption tag: %@ok<VARIO>