diff options
Diffstat (limited to '2048/CH3/EX3.2/conv2.sce')
-rwxr-xr-x | 2048/CH3/EX3.2/conv2.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/2048/CH3/EX3.2/conv2.sce b/2048/CH3/EX3.2/conv2.sce new file mode 100755 index 000000000..f3945a6d3 --- /dev/null +++ b/2048/CH3/EX3.2/conv2.sce @@ -0,0 +1,7 @@ +// Convolution of two sequences
+// 3.2
+
+h = [1 2 3];
+u = [4 5 6];
+y = convol(u,h)
+
|