summaryrefslogtreecommitdiff
path: root/3812/CH8/EX8.9.b
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH8/EX8.9.b')
-rw-r--r--3812/CH8/EX8.9.b/8_9_b.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3812/CH8/EX8.9.b/8_9_b.sce b/3812/CH8/EX8.9.b/8_9_b.sce
new file mode 100644
index 000000000..7635b23a0
--- /dev/null
+++ b/3812/CH8/EX8.9.b/8_9_b.sce
@@ -0,0 +1,18 @@
+//Example 8_9 <b>
+//Determine minimum sampling frequency
+clc;
+clear all;
+Fl=18000;
+Fh=22000;
+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);
+