varargin

조회 수: 453 (최근 30일)
Ahmed Tawfeeq
Ahmed Tawfeeq 2012년 2월 14일
편집: sixwwwwww 2013년 10월 12일
what is varargin used for ?and how to use it? and can I change it to an ordinary input variable?

채택된 답변

Walter Roberson
Walter Roberson 2012년 2월 14일
There are situations in which it is not possible to use any fixed number of arguments, so conversion depends upon what your code does.

추가 답변 (2개)

Matt Tearle
Matt Tearle 2012년 2월 14일
It is used for situations where you want to allow any number of input arguments (so you can't list them). A common reason for that is optional settings -- in MATLAB this is often done with property name/property value pairs. For example, think of how you can pass extra options to plot:
plot(x,y) % plain
plot(x,y,'LineWidth',4)
plot(x,y,'Marker','o','LineWidth',2)
plot(x,y,'Marker','o','LineWidth',2,'MarkerFaceColor','r')
etc. Here you don't want to force the user to input all the possible optional parameters in a specific order, so instead you allow them to specify 'MagicPropertyName' takes the value PropertyValue (eg 'LineWidth' takes the value 2).
To write a function that can do this, you'd make a function declaration like
function plot(x,y,varargin)
Then inside this function, x takes the value of the first input, y takes the value of the second, and all the rest go into cells of the cell array varargin. So, in the last example, varargin would be a 1-by-6 cell array; varargin{1} would be the string 'Marker', varargin{4} would be the number 2, etc.
So obviously there's a bunch of programming you have to do as the developer to parse the elements of varargin, and make your code behave accordingly.
I don't really understand the last question. Could you elaborate?
(Note: the actual plot function is actually even more flexible than this -- the above function declaration line is for illustration only.)
  댓글 수: 3
Walter Roberson
Walter Roberson 2012년 2월 14일
You cannot pass adaptfilt.lms objects around in Simulink . No efforts along the line of calling lms.m directly are going to work.
Walter Roberson
Walter Roberson 2012년 2월 14일
Alternatives discussed in one of your other Questions.

댓글을 달려면 로그인하십시오.


Benjamin Schwabe
Benjamin Schwabe 2012년 2월 14일
varargin is used when the number of input parameter might change. Basically, it puts all input arguments into a cell array. The number of input parameters is given by
nargin.
You can access any of the input values inside the function by
varargin{ind}
where ind is the index number of your argument.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by