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
Code:
clc;
clear all;
close all;
a= mfilt.firdecim(2,firls(32,[0 .32 .48 1],[1 1 0 0]));
b= mfilt.firdecim(2,firls(32,[0 .32 .48 1],[0 0 1 1]));
ch1=cascade(a,a,b);
ch2=cascade(a,a);
fvtool(ch2);
fvtool(ch1);
fvtool(b);
fvtool(a);
i observed that it is multiplying the frequencies but not exactly
please help me to know the mathematical calculations
Last edited by a moderator: