Check the part 1 of CONVOLUTION using MATRIX METHOD in MATLAB in the below link:
https://www.youtube.com/watch?v=nzVPo...
Code:
Check the code in comment section
Code using conv function for the last program discussed in the video:
nx=[-3:3];
x_n=[3 11 7 0 -1 4 2];
subplot(3,1,1);
stem(nx,x_n);
nh=[-1:4];
h_n=[2 3 0 -5 2 1];
subplot(3,1,2);
stem(nh,h_n);
n1=min(nx)+min(nh);
n2=max(nx)+max(nh);
nfinal=n1:n2;
y=conv(x_n,h_n);
subplot(3,1,3);
stem(nfinal,y);
https://www.youtube.com/watch?v=nzVPo...
Code:
Check the code in comment section
Code using conv function for the last program discussed in the video:
nx=[-3:3];
x_n=[3 11 7 0 -1 4 2];
subplot(3,1,1);
stem(nx,x_n);
nh=[-1:4];
h_n=[2 3 0 -5 2 1];
subplot(3,1,2);
stem(nh,h_n);
n1=min(nx)+min(nh);
n2=max(nx)+max(nh);
nfinal=n1:n2;
y=conv(x_n,h_n);
subplot(3,1,3);
stem(nfinal,y);
Plot the convolution result in MATLAB | CONVOLUTION using MATRIX method (Part 2) camera iphone 8 plus apk | |
2 Likes | 2 Dislikes |
143 views views | 1.03K followers |
Science & Technology | Upload TimePublished on 1 Aug 2019 |
Không có nhận xét nào:
Đăng nhận xét