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.

mismatched filter for chirp signal

Status
Not open for further replies.

Asraf Mohamed

Newbie level 3
Joined
May 1, 2014
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
63
hi there,

i try to find the compressed signal output for squared window chirp signal by using mismatched filtet(chebyshev window). the results i got is not expected. please advise. thank you in advance.

Code:
clear all


fs = 10e8;                   
Ts = 1/fs;                 
f0 = 5e6;                    
k= 2.4e11;
dt = 1/fs;
taxis = 0:dt:25e-6;

y = sin(2*pi*(f0 + k/2*taxis).*taxis); y=y';
L=length(y);
 win=chebwin(L,120);
 y2=y.*win;
h=hilbert(y);
h1=real(h);
h2=imag(h);
 y3=xcorr(h2,y2);
 y4=mag2db(y3/max(y3));
 plot(y4);
mismatched filter for edaboard.png
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top