summaryrefslogtreecommitdiff
path: root/3812/CH2/EX2.1/2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH2/EX2.1/2_1.sce')
-rw-r--r--3812/CH2/EX2.1/2_1.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3812/CH2/EX2.1/2_1.sce b/3812/CH2/EX2.1/2_1.sce
new file mode 100644
index 000000000..afbe02690
--- /dev/null
+++ b/3812/CH2/EX2.1/2_1.sce
@@ -0,0 +1,19 @@
+//Example 2_1
+//Find the convolution of two continous time signal
+clc;
+t=-8:1/100:8;
+for i=1:length(t)
+x(i)=exp(-t(i)^2);
+h(i)=3*t(i)^2;
+end
+y=convol(x,h);
+figure
+plot2d(t,h);
+title('Impulse responce');
+figure
+plot2d(t,x);
+title('Input signal');
+figure
+t2=-16:1/100:16
+plot2d(t2,y);
+title('Output signal');