Is there a good way to retrieve variable names of function inputs when the variables are cell indexed?

조회 수: 3 (최근 30일)
I have a function, say myfun(varargin) which accepts variable number of inputs. These input variables are also cell indexed.
Now, is there an elegant way of retrieving the variable names in the function? I did go through the documentation for inputname, but I could not find anything for cell indexed variables.
myfun(varargin)
nVarargs = length(varargin);
v=[];
for i = 1:nVarargs
v = [v; NameOfInputVariable];
end %for i = 1:nVarargs
end % myfun(varargin)
% Calling the function
num1.real = [1 2 3.4];
num2.imag = [5 3 1.9];
myfun(num1.real, num2.imag);

답변 (1개)

Walter Roberson
Walter Roberson 2017년 3월 29일
inputname() only works when variables are passed, not when expressions are passed, and your num1.real is an expression rather than a variable.
You would have to do something like,
num1_real = [1 2 3.4];
num2_imag = [5 3 1.9];
myfun(num1_real, num2_imag);
Having done that, you can use
function v = myfun(varargin)
nVarargs = length(varargin);
v = {};
for i = 1:nVarargs
v{i} = inputname(i); %notice it is the argument _number_
end
end
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 3월 30일
That would happen if you used num1.real and num2.imag like you were using before. You need to use unindexed unqualified variables to be able to get the names, like in the call I show.

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

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by