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.

Powerspektrum of BFSK

Status
Not open for further replies.

harry456

Member level 1
Joined
Nov 13, 2012
Messages
39
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,545
How can I calculate the amplitudes of the power spectrum of a BFSK-signal?

I calculated u(f) via A*0.5*si(pi*f/(2*fm) fm=Frequenz=15kHz of the rectangular signal |||||____
and placed than my spectrum on f0(180kHz) and f1(420kHz) and calculated U(f)=|U1(f)+U2(f)| (super position) but the values that I received for P(f) are different from the values I calculated. (P=-10dBm)
I would really appreciate every kind of ideas.

close all
clear all
f=-12*15:15:28*15;
u=sqrt(10^-1*(10^-3)*50);
uu=u*0.5*sinc(f/(2*15))
P=10*log10(uu.^2/50)+30
f=0:15:(length(P)-1)*15;
stem(f,uu)
%stem(f,uu,'BaseValue', -80)
%ylim([-60 0])
hold on
stem(f,fliplr(uu),'*r')
grid on
u1=uu;
u2=fliplr(uu);
P=10*log10((u1+u2).^2/50)+30;
figure(2)
stem(f,P,'BaseValue', -80)
ylim([-80 0])
grid on
disp([f' P'])
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top