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

For example: [varargin{:}] = convertStringsToChars(varargin{:});

3 件のコメント

Tommy
Tommy 2020 年 6 月 24 日
編集済み: Tommy 2020 年 6 月 26 日
varargin{:} creates a comma-separated list. On the right hand side of your example, the syntax is being used to create function call arguments. On the left hand side, it is being used to assign function return values (not concatenation, thanks Stephen!)
Stephen23
Stephen23 2020 年 6 月 24 日
"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 2020 年 6 月 26 日
編集済み: Tommy 2020 年 6 月 26 日
Somehow I missed this comment until now. Yikes, thank you for pointing out the mistake. Hopefully it is now correct.

サインインしてコメントする。

 採用された回答

Stephen23
Stephen23 2020 年 6 月 24 日
編集済み: Stephen23 2022 年 2 月 23 日

0 投票

"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});

その他の回答 (1 件)

KSSV
KSSV 2020 年 6 月 24 日

0 投票

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.

カテゴリ

ヘルプ センター および File ExchangeArgument Definitions についてさらに検索

質問済み:

2020 年 6 月 24 日

編集済み:

2022 年 2 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by