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 /52/CH1/EX1.5.d | |
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 '52/CH1/EX1.5.d')
-rwxr-xr-x | 52/CH1/EX1.5.d/Example1_5_d.jpg | bin | 0 -> 46199 bytes | |||
-rwxr-xr-x | 52/CH1/EX1.5.d/Example1_5_d.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/52/CH1/EX1.5.d/Example1_5_d.jpg b/52/CH1/EX1.5.d/Example1_5_d.jpg Binary files differnew file mode 100755 index 000000000..f198e232c --- /dev/null +++ b/52/CH1/EX1.5.d/Example1_5_d.jpg diff --git a/52/CH1/EX1.5.d/Example1_5_d.sce b/52/CH1/EX1.5.d/Example1_5_d.sce new file mode 100755 index 000000000..10dd7274a --- /dev/null +++ b/52/CH1/EX1.5.d/Example1_5_d.sce @@ -0,0 +1,20 @@ +//Example 1.5 (d)
+//To Determine Whether Given Signal is Periodic or not
+clear;
+clc ;
+close ;
+t=0:0.01:50;
+x1=cos(%pi*t/3)+cos(3*%pi*t/4);
+subplot(1,2,1);
+plot(t,x1);
+xlabel('t');
+ylabel('x(t)');
+title('CONTINUOUS TIME PLOT');
+n=0:0.2:50;
+x2=cos(%pi*n/3)+cos(3*%pi*n/4);
+subplot(1,2,2);
+plot2d3(n,x2);
+xlabel('n');
+ylabel('x(n)');
+title('DISCRETE TIME PLOT');
+//Hence Given Signal is Periodic with N=24
\ No newline at end of file |