diff options
Diffstat (limited to '52/CH1/EX1.5.a')
-rwxr-xr-x | 52/CH1/EX1.5.a/Example1_5_a.jpg | bin | 0 -> 34845 bytes | |||
-rwxr-xr-x | 52/CH1/EX1.5.a/Example1_5_a.sce | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/52/CH1/EX1.5.a/Example1_5_a.jpg b/52/CH1/EX1.5.a/Example1_5_a.jpg Binary files differnew file mode 100755 index 000000000..34bf2bf73 --- /dev/null +++ b/52/CH1/EX1.5.a/Example1_5_a.jpg diff --git a/52/CH1/EX1.5.a/Example1_5_a.sce b/52/CH1/EX1.5.a/Example1_5_a.sce new file mode 100755 index 000000000..050bff03d --- /dev/null +++ b/52/CH1/EX1.5.a/Example1_5_a.sce @@ -0,0 +1,20 @@ +//Example 1.5 (a)
+//To Determine Whether Given Signal is Periodic or not
+clear;
+clc ;
+close ;
+t=0:0.01:2;
+x1=exp(%i*6*%pi*t);
+subplot(1,2,1);
+plot(t,x1);
+xlabel('t');
+ylabel('x(t)');
+title('CONTINUOUS TIME PLOT');
+n=0:0.2:2;
+x2=exp(%i*6*%pi*n);
+subplot(1,2,2);
+plot2d3(n,x2);
+xlabel('n');
+ylabel('x(n)');
+title('DISCRETE TIME PLOT');
+//Hence Given Signal is Periodic with N=1
\ No newline at end of file |