summaryrefslogtreecommitdiff
path: root/1574/CH1/EX1.14
diff options
context:
space:
mode:
Diffstat (limited to '1574/CH1/EX1.14')
-rwxr-xr-x1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpgbin0 -> 19070 bytes
-rwxr-xr-x1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpgbin0 -> 17142 bytes
-rwxr-xr-x1574/CH1/EX1.14/Signals_Ex_1_14.sce37
3 files changed, 37 insertions, 0 deletions
diff --git a/1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpg b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpg
new file mode 100755
index 000000000..794270c28
--- /dev/null
+++ b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpg
Binary files differ
diff --git a/1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpg b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpg
new file mode 100755
index 000000000..b62bb35f9
--- /dev/null
+++ b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpg
Binary files differ
diff --git a/1574/CH1/EX1.14/Signals_Ex_1_14.sce b/1574/CH1/EX1.14/Signals_Ex_1_14.sce
new file mode 100755
index 000000000..a05c0c207
--- /dev/null
+++ b/1574/CH1/EX1.14/Signals_Ex_1_14.sce
@@ -0,0 +1,37 @@
+//Chapter 1
+//Ex1.14, page no 44
+// CTS Signal
+// Continuous Time Fourier Transforms of
+// Sinusoidal waveforms(a)sin(Wot)(b)cos(Wot)
+clear ;
+clc ;
+close ;
+// CTFT
+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 ];
+//displaying the given function
+figure
+a =gca();
+a.y_location="origin";
+a.x_location="origin";
+plot2d3('gnn',W,imag(XW),2);
+poly1=a.children(1).children(1) ;
+poly1.thickness =3;
+xlabel('W' );
+title( 'CTFT of sin(Wot ) ')
+//displaying the fourier Transform of the given function
+figure
+a =gca();
+a.y_location="origin";
+a.x_location="origin";
+plot2d3('gnn',W,XW1,5);
+poly1 =a.children(1).children(1) ;
+poly1.thickness = 3;
+xlabel('W' );
+title( 'CTFT of cos (Wot)')