summaryrefslogtreecommitdiff
path: root/3812/CH8/EX8.9.a/8_9_a.sce
blob: b3f622bc28ab177843cf12365b9394bce72c7b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Example 8_9 <a>
//Determine minimum sampling frequency
clc;
clear all;
Fl=9000;
Fh=12000;
Bandwidth_1=Fh-Fl;
a=modulo(Fh,Bandwidth_1);
Fh_1=Fh-a;
div_12=Fh_1./Bandwidth_1;
if(a==0) then
Fs=2*Bandwidth_1;
else
Fs=(2*Fh)/div_12;
end
disp('Minimum Sampling Frequency=');
disp(Fs);