summaryrefslogtreecommitdiff
path: root/3838/CH2/EX2.1.b/Ex2_1_b.sce
diff options
context:
space:
mode:
Diffstat (limited to '3838/CH2/EX2.1.b/Ex2_1_b.sce')
-rw-r--r--3838/CH2/EX2.1.b/Ex2_1_b.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3838/CH2/EX2.1.b/Ex2_1_b.sce b/3838/CH2/EX2.1.b/Ex2_1_b.sce
new file mode 100644
index 000000000..27f80ca78
--- /dev/null
+++ b/3838/CH2/EX2.1.b/Ex2_1_b.sce
@@ -0,0 +1,10 @@
+//example 2.1.b
+//check the signal is periodic or not
+clc ;
+t =-15:0.01:15;
+a=1;//assumed the value of a to be equal to 1
+y =exp(a*t);
+plot(t,y);
+xtitle('plot of function exp(a*t)')
+xlabel('time--->')
+disp ( 'Plot shows that given signal is not periodic' ) ;