필터 지우기
필터 지우기

how can Matlab's filter() function generate the output y[n] when the input is given by the plot in the image with input long enough to see all the non-zero values of y[n].

조회 수: 1 (최근 30일)

답변 (1개)

Walter Roberson
Walter Roberson 2023년 10월 16일
편집: Walter Roberson 2023년 10월 17일
Since no constraints are given on what the output signal should look like, you might as well make the output be exactly the same as the input.
x = [1 4 3 2 3]
x = 1×5
1 4 3 2 3
subplot(2,1,1); stem(x); title('input signal')
y = filter(1,1,x)
y = 1×5
1 4 3 2 3
subplot(2,1,2); stem(y); title('output signal')
  댓글 수: 6
Chuki Ocheje
Chuki Ocheje 2023년 10월 17일
for the overall cascade system, it was y[n] = 2x[n-4] + 3x[n-3] - 2x[n-5] + 4x[n-2] - x [n-1] (p.s. this is the difference equation of it )
Paul
Paul 2023년 10월 17일
What does that notation for h2[n] mean? I'm not familiar with that brace-and-arrow ...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by