how to find convolution between two functions??
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
nurul hafizah
am 17 Mai 2015
Beantwortet: Gui Chen
am 21 Jan. 2021
I have this to function.. how to find the convolution of this two function and plot the graph??
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150202/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 17 Mai 2015
output = conv(x, h, 'full');
plot(output, 'b*-');
grid on;
2 Kommentare
Image Analyst
am 18 Mai 2015
I think that's well within your capabilities. Just pick a max value for n. Any beginner would know
x = 1:n;
x(n+1:nMax) = 0;
It's pretty similar for h so I'm sure you can get it.
Weitere Antworten (1)
Gui Chen
am 21 Jan. 2021
You could take a look at this video. https://youtu.be/JlUM0XHTSSQ
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!