summaryrefslogtreecommitdiff
path: root/22/CH2/EX2.6
diff options
context:
space:
mode:
Diffstat (limited to '22/CH2/EX2.6')
-rwxr-xr-x22/CH2/EX2.6/ch2ex6b.jpgbin0 -> 16249 bytes
-rwxr-xr-x22/CH2/EX2.6/ch2ex6c.jpgbin0 -> 17871 bytes
-rwxr-xr-x22/CH2/EX2.6/que2_6.sce29
3 files changed, 29 insertions, 0 deletions
diff --git a/22/CH2/EX2.6/ch2ex6b.jpg b/22/CH2/EX2.6/ch2ex6b.jpg
new file mode 100755
index 000000000..55e64e3ec
--- /dev/null
+++ b/22/CH2/EX2.6/ch2ex6b.jpg
Binary files differ
diff --git a/22/CH2/EX2.6/ch2ex6c.jpg b/22/CH2/EX2.6/ch2ex6c.jpg
new file mode 100755
index 000000000..8524ea425
--- /dev/null
+++ b/22/CH2/EX2.6/ch2ex6c.jpg
Binary files differ
diff --git a/22/CH2/EX2.6/que2_6.sce b/22/CH2/EX2.6/que2_6.sce
new file mode 100755
index 000000000..f39a22928
--- /dev/null
+++ b/22/CH2/EX2.6/que2_6.sce
@@ -0,0 +1,29 @@
+//time domain analysis of continuous time systems
+//Convolution Integral of input x(t) = (e^-3t).u(t)and h(t) =(2*e^-2*t-e^-t)u(t)
+clear;
+close;
+clc;
+Max_Limit = 10;
+t = 0:0.001:10;
+for i=1:length(t)
+ g(i) =(2*exp(-2*t(i))-exp(-t(i)));
+end
+ x= exp(-3*(t));
+
+y = convol(x,g)
+figure
+a=gca();
+plot2d(t,g)
+xtitle('Impulse Response','t','h(t)');
+a.thickness = 2;
+figure
+a=gca();
+plot2d(t,x)
+xtitle('Input Response','t','x(t)');
+a.thickness = 2;
+figure
+a=gca();
+T=0:0.001:20;
+plot2d(T,y)
+xtitle('Output Response','t','y(t)');
+a.thickness = 2; \ No newline at end of file