From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001
From: priyanka
Date: Wed, 24 Jun 2015 15:03:17 +0530
Subject: initial commit / add all books

---
 67/CH3/EX3.15/example315.sce | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100755 67/CH3/EX3.15/example315.sce

(limited to '67/CH3/EX3.15')

diff --git a/67/CH3/EX3.15/example315.sce b/67/CH3/EX3.15/example315.sce
new file mode 100755
index 000000000..094c51ecf
--- /dev/null
+++ b/67/CH3/EX3.15/example315.sce
@@ -0,0 +1,20 @@
+//Example 3.15
+clc;
+clear;
+T1=2;
+T=4*T1;
+Wo=2*%pi/T;
+W=[-Wo,0,Wo];
+ak=(2*%pi*Wo*T1/%pi)/sqrt(-1);
+XW=[-ak,0,ak];
+ak1=(2*%pi*Wo*T1/%pi);
+XW1=[ak1,0,ak1];
+figure
+a=gca();
+a.y_location="origin";
+a.x_location="origin";
+plot2d3('gnn',W,XW1,2);
+poly1=a.children(1).children(1);
+poly1.thickness=3;
+xlabel('W');
+title('CTFT of cos(Wot)');
\ No newline at end of file
-- 
cgit