필터 지우기
필터 지우기

Design a 7-point running average filter

조회 수: 4 (최근 30일)
Arsalan Amin
Arsalan Amin 2022년 1월 29일
댓글: Image Analyst 2022년 1월 29일
DSP Question :-
Question description is provided below.
Required file (lab12_data.mat) is attached.
Kindly help me out with this question, and use proper commenting, to explain your matlab code effectively.
The part that I've done so far is given below:
load('lab12_data.mat')
b = 1/7*ones(7,1);
a = 1;
output = filter(b,a,simple);
plot(output);
  댓글 수: 1
Image Analyst
Image Analyst 2022년 1월 29일
I don't see any calls to subplot(). Why not? It tells you to use it. I don't see delay introduced in b, where almost half of it is zero. Why are you not doing the rest of the problem?

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

답변 (1개)

Image Analyst
Image Analyst 2022년 1월 29일
편집: Image Analyst 2022년 1월 29일
Here's some help:
And a hint: they want you to use the subplot(), plot(), filter() and filter2() functions. See the documentation on those for example code. And there is also an immse() function to computer mean squared error.

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by