How to give an array with dynamic size as a paramter to fucntion?
3 次查看(过去 30 天)
显示 更早的评论
Hey!
I have a problem. I want to use an array with dynamic size. I mean user can define a size for an array and each element of this array is also an another array:
If user wants an array with a 5 element, the user will wuse the function like that
[A,B,C,D,E]=trying(d)
and each of these A,B,C,D,E will be an array like
A=zeros(d,d,2,d);
B=zeros(d,d,2,d);
C=zeros(d,d,2,d);
D=zeros(d,d,2,d);
E=zeros(d,d,2,d);
or if user wants an array with 2 element, the user can write that:
[A,B]=trying(d)
and the fucntion should do that:
A=zeros(d,d,2,d);
B=zeros(d,d,2,d);
What I mean is that the parameter will be an array with a dynamic size
How can I do that in MATLAB ? I have to use MATLAB and I am very new in MATLAB
0 个评论
采纳的回答
Ameer Hamza
2020-5-17
Also, read here why using variable names like A, B, C, is not recommended: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval. Instead use cell arrays.
4 个评论
Stephen23
2020-5-17
"I know eval is not a good function ... because in this case eval is the best"
I very much doubt that eval is "the best" for this task.
Ameer Hamza already showed a much better solution using repmat, here are some other much better ways:
function varargout = trying(d)
varargout = cell(1,max(1,nargout));
varargout(:) = {zeros(d,d,2,d)};
end
function varargout = trying(d)
for k = max(1,nargout)):-1:1
varargout{k} = zeros(d,d,2,d);
end
end
Much simpler, neater, and more efficient using basic MATLAB arrays and indexing.
eval is what beginners use to force themselves into writing slow, complex, inefficient code.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!