diff options
Diffstat (limited to '3812/CH8/EX8.9.c/8_9_c.sce')
-rw-r--r-- | 3812/CH8/EX8.9.c/8_9_c.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3812/CH8/EX8.9.c/8_9_c.sce b/3812/CH8/EX8.9.c/8_9_c.sce new file mode 100644 index 000000000..b44e88da3 --- /dev/null +++ b/3812/CH8/EX8.9.c/8_9_c.sce @@ -0,0 +1,17 @@ +//Example 8_9 <c>
+//Determine minimum sampling frequency
+clc;
+clear all;
+Fl=30000;
+Fh=35000;
+Bandwidth_1=Fh-Fl;
+a=modulo(Fh,Bandwidth_1);
+Fh_1=Fh-a;
+div_12=Fh_1./Bandwidth_1;
+if(a==0) then
+Fs=Bandwidth_1;
+else
+Fs=Bandwidth_1;
+end
+disp('Minimum Sampling Frequency=');
+disp(Fs);
|