summaryrefslogtreecommitdiff
path: root/2279/CH4/EX4.1/Ex4_1.sce
blob: 16df5cecc5a3e690f0b2eb701381da9bf0d08d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Example 4.1
//Convolution sum of x[n] and h[n]
clc
clear
n=[0 1 2];
n1=0:4;
x=[0.5 0.5 0.5];
h=[3 2 1];
y=convol(h,x)
disp("Convolution of x[n] and h[n] is...")
disp(y)
subplot(3,1,1)
xtitle("","....................n","x[n]");
plot2d3('gnn',n,x,5);
subplot(3,1,2)
xtitle("","....................n","h[n]");
plot2d3('gnn',n,h,5);
subplot(3,1,3)
xtitle("",".............................n","y[n]");
plot2d3('gnn',n1,y,5);