how to return cell array with varargout?
조회 수: 17 (최근 30일)
표시 이전 댓글
Dear all,
I know the title is not that explicit but I did not find a short way to formulate my question.
I remind here the code suggested:
function varargout = varargoutexample(x)
% Demonstrates how to use VARAGOUT.
% Pass in a vector of values.
% Note that NARGOUT is the number of output
% arguments you called the function with.
for ii = 1:nargout
varargout{ii} = x.^ii;
end
How can I change the code so as to get a dynamic cell array as an output.
To be more explicit I imagine something like:
function varargout = varargoutexample(N,x)
for ii = 1:N
varargout{ii} = x.^ii;
end
such as when I call the function I have:
% in the shell
my_cell = cell(1,3); % pre-allocation
>> my_cell = varargoutexample(3,2)
my_cell =
1x3 cell array
{[2]} {[4]} {[8]}
And then get easy acces to the elements of my_cell :
my_cell{1} = 2
my_cell{2} = 4
my_cell{3} = 8
When I print the loop I have the expected result:
>> my_cell = varargoutexample(3,2)
ii =
1
varargout =
1×1 cell array
{[2]}
ii =
2
varargout =
1×2 cell array
{[2]} {[4]}
ii =
3
varargout =
1×3 cell array
{[2]} {[4]} {[8]}
But when I call my_cell I only get 2 which corresponds to the first loop result...
I hope I am clear enough.
Thanks a lot in advance!
Best regards,
louis
댓글 수: 3
채택된 답변
추가 답변 (1개)
Jonas
2022년 7월 12일
if i understand you cirrectly, you want as dynamic output variable varargout, and each of the given should/can be a cell itself
so not this
[a,b,c]=varargoutexampleMultVar(3,2)
but you want a cell
a=varargoutexample(3,2)
function varargout = varargoutexampleMultVar(N,x)
varargout=cell(1,N);
for ii = 1:N
varargout{ii} = x.^ii;
end
end
function varargout = varargoutexample(N,x)
for ii = 1:N
varargout{1}{ii} = x.^ii;
end
end
참고 항목
카테고리
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!