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.

reducing order of fir filter design

Status
Not open for further replies.
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 came to know that cascading means generating new filter with new cutoff frequencies but i want to know how it is deciding the new cutoff frequency
i observed that it is multiplying the frequencies but not exactly
please help me to know the mathematical calculations
 
Last edited by a moderator:

You're cascading decimators (multi-rate filters) rather than basic FIR filters. The decimation factor are respectively multiplied. The effect hasn't to do with cascading filters as discussed in this thread before.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top