summaryrefslogtreecommitdiff
path: root/3812/CH8/EX8.2.a/8_2_a.sce
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH8/EX8.2.a/8_2_a.sce')
-rw-r--r--3812/CH8/EX8.2.a/8_2_a.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3812/CH8/EX8.2.a/8_2_a.sce b/3812/CH8/EX8.2.a/8_2_a.sce
new file mode 100644
index 000000000..44a674131
--- /dev/null
+++ b/3812/CH8/EX8.2.a/8_2_a.sce
@@ -0,0 +1,11 @@
+//Example 8_2 <a>
+//determine the nyquist rate of x(t)=sinc(200*pi*t)
+//sinc(t)=cos(t)/t
+//cos3(t)=3/4[cos(200)+1/4cos(600)]
+clc;
+clear all;
+wp=200;
+F1=wp/2;
+Fs=2*F1;
+disp('Nyquist Rate=');
+disp(Fs);