kashifrao
Newbie level 1
- Joined
- Nov 18, 2014
- Messages
- 1
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 7
I wrote my code OFDM system, now I want to calculate PAPR of my OFDM system for kk = 1:nsym
I use this code for PAPR calculation, Is it right ?
and why we plot CCDF vs PAPR? can anybody help me.
Best Regards
Kashif
Code dot - [expand] 1 2 3 4 5 6 peakpwer_ofdm(kk) = max(abs(ser_data(nsym,:)).^2); % average power averagepower_ofdm(kk) = mean(abs(ser_data(nsym,:)).^2) ; % PAPR PAPR_ofdm(kk) = peakpwer_ofdm/averagepower_ofdm ; end
I use this code for PAPR calculation, Is it right ?
and why we plot CCDF vs PAPR? can anybody help me.
Best Regards
Kashif
Last edited by a moderator: