필터 지우기
필터 지우기

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 CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by