I'm having issues with the for loop below. It is meant to cycle through 0 to 12 snr values and then at the end show a final BER value for each of the iterations of snr. Currently the final BER is just showing what happens at the end of the loop when the snr=12. How can i create an array to show every BER value from snr=0:12?

댓글 수: 3

Try to update as below and let me know if it fixes:
finalBER(sn+1) = numerrs/N;
james morley
james morley 2020년 4월 27일
Thats worked, thank you so much!
Sriram Tadavarty
Sriram Tadavarty 2020년 4월 27일
Glad it helped.
I will place the same in answer.

댓글을 달려면 로그인하십시오.

답변 (1개)

Sriram Tadavarty
Sriram Tadavarty 2020년 4월 27일

0 개 추천

Hi James,
The variable is updated with the latest value in the for loop, leading to have only single value at the end of the for loop.
Make it an array by indexing the value of each snr point, to have the array of values at the end of loop.
Since, sn starts from 0, and is contiguous, you can use the following:
finalBER(sn+1) = numerrs/N;
If sn is not from 0 or if the SNR values are not steps of 1, try the following:
count = 1;
...
for sn = SNR
...
finalBER(count) = numerrs/N;
count = count+1;
end
You can work of with first case, as the SNR is from 0 and is contiguous.
Hope this helps.
Regards,
Sriram

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

릴리스

R2020a

태그

질문:

2020년 4월 27일

답변:

2020년 4월 27일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by