summaryrefslogtreecommitdiff
path: root/3812/CH8/EX8.2.a/8_2_a.sce
blob: 44a674131b0e87cb3a12040fdb4c529d4ee81817 (plain)
1
2
3
4
5
6
7
8
9
10
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);