lakshmikalyani
Member level 1
- Joined
- Jan 5, 2014
- Messages
- 36
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 6
- Location
- kakinada
- Activity points
- 248
hi
i am doing a project on filter design
i am stuck while testing the filter.
i want to know how to test a filer in matlab coding
my code is
i want to give "in" as input to the filer that had designed. and check the output and analyze it
can u please help me
i know we can give a sine signal in simulink and realize the filter and fda tools but i am not getting the expected outputs
i want to do it in coding
can u help me out of it
i am doing a project on filter design
i am stuck while testing the filter.
i want to know how to test a filer in matlab coding
my code is
Code dot - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 clc; clear all; in=[100,200,300,470,500 550]; wp=420; ws=490; rp=3; rs=80; fs=1000; w1=2*wp/fs;w2=2*ws/fs; [n,wn]=cheb1ord(w1,w2,rp,rs) [b,a]= cheby1(n,rp,wn) [x,y]=freqz(b,a,fs); plot(y,abs(x));
i want to give "in" as input to the filer that had designed. and check the output and analyze it
can u please help me
i know we can give a sine signal in simulink and realize the filter and fda tools but i am not getting the expected outputs
i want to do it in coding
can u help me out of it
Last edited by a moderator: