Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
could anyone help me to fix the issue for the following code.
조회 수: 1 (최근 30일)
이전 댓글 표시
for t= 1:length(N_UE)
list_of_N_rng={[1,2,3,4],[5,6,7,8,9]};
for seed_idx = 1 : length(list_of_N_rng)
N_rng=list_of_N_rng{seed_idx};
for s=1:length(N_rng)
....
...
...
output1(t,s)=overall_throughput1 % final result of throughput calculation
...
...
end
end
end
dummyX = 1:length(list_of_N_rng);
figure
plot(dummyX,output1,'rs');
hold on;grid on;
I have calculated the overall throughput for [1,2,3,4] and [5,6,7,8,9] after calculating the throughput i want to plot the graph for [1,2,3,4] and [5,6,7,8,9].
But the values of 5,6,7,8,9 are overwritten on 1,2,3,4.
So in the graph i can see the values of only 5,6,7,8,9 and not 1,2,3,4.
Could anyone help me how to obtain the values of 1,2,3,4
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!