summaryrefslogtreecommitdiff
path: root/3812/CH10/EX10.27
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH10/EX10.27')
-rw-r--r--3812/CH10/EX10.27/10_27.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/3812/CH10/EX10.27/10_27.sce b/3812/CH10/EX10.27/10_27.sce
new file mode 100644
index 000000000..4d166812a
--- /dev/null
+++ b/3812/CH10/EX10.27/10_27.sce
@@ -0,0 +1,7 @@
+//Example 10_27
+//Convolution of given signals
+clc;
+x=[1,-2,1];
+y=[1,1,1,1,1,1];
+X= convol (x,y);
+disp(X,'Convolution of given sequences');