summaryrefslogtreecommitdiff
path: root/52/CH1/EX1.5.d
diff options
context:
space:
mode:
Diffstat (limited to '52/CH1/EX1.5.d')
-rwxr-xr-x52/CH1/EX1.5.d/Example1_5_d.jpgbin0 -> 46199 bytes
-rwxr-xr-x52/CH1/EX1.5.d/Example1_5_d.sce20
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
new file mode 100755
index 000000000..f198e232c
--- /dev/null
+++ b/52/CH1/EX1.5.d/Example1_5_d.jpg
Binary files differ
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