could anyone tell me how to store the result of each iteration in an array for the following code

1 次查看(过去 30 天)
code:
t=4;
r=6;
for it=1:4
output(t,r)=overall_throughput;
output_it(t,r,it)=output(t,r);
end

采纳的回答

Walter Roberson
Walter Roberson 2018-4-10
t=4;
r=6;
for it=1:4
output(t,r)=overall_throughput;
output_it(t,r,it)=output(t,r);
all_output{it} = output;
all_output_it{it} = output_it;
end
Now a complete record of the results of the iterations is stored in all_output and all_output_it
  5 个评论
Prabha Kumaresan
Prabha Kumaresan 2018-4-12
I have modified the line to
throughput{u,v} =(C.*log2(1+(((A{u,v}).*(B{u,v})/(w+sum(B(1:u-1,v)).*A{u,v})))))
but still i am getting error. Cell contents reference from a non-cell array object.

请先登录,再进行评论。

更多回答(0 个)

类别

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