What does the varargin function do and what does varargin{:} mean?
139 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Victoria Helm
el 24 de Jun. de 2020
For example: [varargin{:}] = convertStringsToChars(varargin{:});
3 comentarios
Stephen23
el 24 de Jun. de 2020
This is incorrect: no arrays are being concatenated.
When used on the LHS it refers to the elements of the cell array, just like on the RHS. The only difference is that values are being assigned to those elements rather than extracted from them. This is explained in the section "Assigning to a Comma-Separated List" here:
Respuesta aceptada
Stephen23
el 24 de Jun. de 2020
Editada: Stephen23
el 23 de Feb. de 2022
"What does the varargin function do..."
varargin is not a function, it is a cell array which contains any number of optional input arguments:
"... and what does varargin{:} mean?"
That syntax creates a comma-separated list from the cell array varargin:
So your example is equivalent to this:
[varargin{1},varargin{2},..,varargin{end}] = convertStringsToChars(varargin{1},varargin{2},..,varargin{end});
0 comentarios
Más respuestas (1)
KSSV
el 24 de Jun. de 2020
varargin stands for variable number of arguments. You can input any number of arguments to the function. And these inputs are read by nargin which means the number of inputs.
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!