blob: 58888f4f6a5bb90c79f853ee41c4bee9ee663912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Graphical//
//Example 10.8.1
//Signal to Distortion Ratio
//Calculation of no. of subfilters
clear;
clc;
close;
SDR_dB = 50; //Signal to distortion ratio = 50 dB
Wx = 0.8*%pi; //Digital maximum frequency of input data
SDR = 10^(SDR_dB/10)
disp('The Number of subfilters required')
I = Wx*sqrt(SDR/12);
I = ceil(I)
|