<< feature | Core | isunicodesupported >> |
s = inputname(argNumber) |
a scalar, real, positive integer value: Number of function input argument
character vector: variable name
inputname get variable name of function input.
inputname is only useable within a function
function R = getinputname(varargin)
R = string([]);
for i = 1:nargin
R = [R, string(inputname(i))];
end
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET