What does the varargin function do and what does varargin{:} mean?
이전 댓글 표시
For example: [varargin{:}] = convertStringsToChars(varargin{:});
댓글 수: 3
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
2020년 6월 24일
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:
채택된 답변
추가 답변 (1개)
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 Exchange에서 Argument Definitions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!