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.

who can solve this simple problem????

Status
Not open for further replies.

eng.Joseph

Newbie level 3
Joined
Oct 3, 2012
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,299
hi everybody,
how can i found the maximum and the minimum frequencies that will be heard from this chirp matlab code

fs = 7000;
dt = 1/fs;
dur = 1.8;
t = 0:dt:dur;
psi = 2*pi*(100+200*t+500*t.*t);
x=real(7.7*exp(j*psi));
sound(x,fs);

thanks in advance for any help.
 

Use the fact that instantaneous omega is d(phase)/d(time), i.e., instantaneous frequency is 1/(2*pi) * delta(psi)/delta(t) .
Regards

Z
 

exp(j*psi) = exp(j*2*pi*100) * exp(j*2*pi*t*(200+500*t))
First multiplier is constant and it is related to amplitude of signal together with 7.7
Second is chirp wave. Argument 2*pi*f*t = 2*pi*t*(200+500*t))
So f = 200 + 500*t
So min is 200 and max is 500*dur.
 

thank you zorro and thank you Mityan but how can i substitute the maximum f value in the script written above and to verify about minimum frequency.
regards
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top