フィルターのクリア

compute the convolution and plot the sequence

11 ビュー (過去 30 日間)
Manikanta Jupudi
Manikanta Jupudi 2021 年 9 月 2 日
回答済み: Chunru 2021 年 9 月 2 日
Write a MATLAB program to compute the convolution of the following sequences
x=[1 2 3 4 5 6], y=[1, 1 ,1]
(a) Plot the signal x and y using stem plots as two subplots in a single figure window
(b) Plot the convolved sequence in a separate figure window

回答 (1 件)

Chunru
Chunru 2021 年 9 月 2 日
x=[1 2 3 4 5 6];
y=[1, 1 ,1]
y = 1×3
1 1 1
z = conv(x, y);
stem(z)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by