Variable-length output argument list
varargout
varargout
is an output
variable in a function definition statement that allows the function
to return any number of output arguments. Specify varargout
using
lowercase characters, and include it as the last output argument after
any explicitly declared outputs. When the function executes, varargout
is
a 1-by-N cell array, where N is
the number of outputs requested after the explicitly declared outputs.