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.

Help me writing a Matlab code for analyzing chirp signal

Status
Not open for further replies.

gaboor

Member level 1
Joined
Mar 23, 2006
Messages
37
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,558
Matlab Help

I want to analyse the chirp signal using matlab. I tried to use FFt but i couldn

i dont want to use the toolbox. i want to write a code!

any help please
 

Re: Matlab Help

Why dont you use the Matlab help?

It pretty simple I think. Generate the chirp signal then take its FFT and then plot it

t = 0:0.001:2; % 2 secs @ 1kHz sample rate
y = chirp(t,0,1,150);
f=fft(y);
plot(f)
 

Re: Matlab Help

Well, i tried Matlab help.
It doesnt generate what exactly iam looking for!!

Maybe i dont understand the concept of Chirp very well!.
Any good material on Chirp modulation and the equations?
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top