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.

frequency change detection by adaptive filter

Status
Not open for further replies.

godsmack

Newbie level 1
Joined
Sep 15, 2013
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
7
hi guys .
I want to detect frequency change detection by adaptive filter . but i don't know how can i do it .
for example i made a signal in MATLAB and i want to detect frequency changing time by adaptive filter .
Can i do this by adaptive filter ?
i'm waiting for your help
this is my signal code

%%%%%%%%%%%%%%%%%%%%
clear
close all
fs1 = 5; %Hz
fs2 = 15; %Hz
t1 = 0:0.01:2;
t2 = 2:0.01:4;
s1 = sin (2*pi*fs1*t1);
s2 = sin (2*pi*fs2*t2);
t = [t1 t2];
s = [s1 s2];
plot(t,s)
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top