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 /1574/CH1/EX1.14 | |
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 '1574/CH1/EX1.14')
-rwxr-xr-x | 1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpg | bin | 0 -> 19070 bytes | |||
-rwxr-xr-x | 1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpg | bin | 0 -> 17142 bytes | |||
-rwxr-xr-x | 1574/CH1/EX1.14/Signals_Ex_1_14.sce | 37 |
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 Binary files differnew file mode 100755 index 000000000..794270c28 --- /dev/null +++ b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14.jpg 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 Binary files differnew file mode 100755 index 000000000..b62bb35f9 --- /dev/null +++ b/1574/CH1/EX1.14/Result_Figure_1_Ex1_14_0.jpg 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)')
|