Filter löschen
Filter löschen

What does the varargin function do and what does varargin{:} mean?

170 Ansichten (letzte 30 Tage)
For example: [varargin{:}] = convertStringsToChars(varargin{:});
  3 Kommentare
Stephen23
Stephen23 am 24 Jun. 2020
"On the left hand side, it is being used for concatenation."
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:
Tommy
Tommy am 26 Jun. 2020
Bearbeitet: Tommy am 26 Jun. 2020
Somehow I missed this comment until now. Yikes, thank you for pointing out the mistake. Hopefully it is now correct.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephen23
Stephen23 am 24 Jun. 2020
Bearbeitet: Stephen23 am 23 Feb. 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});

Weitere Antworten (1)

KSSV
KSSV am 24 Jun. 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.

Kategorien

Mehr zu Entering Commands finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by