diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce')
-rwxr-xr-x | 716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce b/716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce new file mode 100755 index 000000000..492d4b7ee --- /dev/null +++ b/716/CH9/EX9.3.V/9_13_ExerciseV9_3.sce @@ -0,0 +1,21 @@ +//Perform DFT of x(n)=(1 1 1 2 2) and sketch magnitude and phase spectrum
+clc;
+clear;
+N=5;
+xn=[1 1 1 2 2];
+for k=0:1:N-1
+ Xk(k+1)=0;
+ for n=0:1:N-1
+ Xk(k+1)=Xk(k+1)+xn(n+1)*exp(-%i*2*%pi*k*n/N);
+ end
+end
+wk=0:1:N-1;
+disp(Xk,'4 point DFT of x(n)=>');
+disp(abs(Xk),'magnitude of 4 point DFT x(n)=>');
+disp(atan(imag(Xk),real(Xk)),'phase of 4 point DFT x(n)=>');
+subplot(1,2,1)
+plot2d3(wk,abs(Xk),2);
+xtitle('Magnitude Spectrum','k','|X(k)|');
+subplot(1,2,2)
+plot2d3(wk,atan(imag(Xk),real(Xk)),2);
+xtitle('Phase Spectrum','k','angle(X(k))');
\ No newline at end of file |