Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to calculate PAPR and why to plot PAPR with CCDF

Status
Not open for further replies.

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

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:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top