how to find convolution between two functions??

6 ビュー (過去 30 日間)
nurul hafizah
nurul hafizah 2015 年 5 月 17 日
回答済み: Gui Chen 2021 年 1 月 21 日
I have this to function.. how to find the convolution of this two function and plot the graph??

採用された回答

Image Analyst
Image Analyst 2015 年 5 月 17 日
output = conv(x, h, 'full');
plot(output, 'b*-');
grid on;
  2 件のコメント
nurul hafizah
nurul hafizah 2015 年 5 月 18 日
how to write the equation of h(n) and x(n) into matlab??
Image Analyst
Image Analyst 2015 年 5 月 18 日
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.

サインインしてコメントする。

その他の回答 (1 件)

Gui Chen
Gui Chen 2021 年 1 月 21 日
You could take a look at this video. https://youtu.be/JlUM0XHTSSQ

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by