Why I am getting negative values in my low pass filter results?

조회 수: 5 (최근 30일)
Zahra
Zahra 2023년 4월 8일
답변: Sam Chak 2023년 4월 11일
Why I am getting negative values in my low pass filter ?
  댓글 수: 2
Vilém Frynta
Vilém Frynta 2023년 4월 8일
You're not making it easy for us to help you. Provide your data, your code etc.
Image Analyst
Image Analyst 2023년 4월 11일
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

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

답변 (1개)

Sam Chak
Sam Chak 2023년 4월 11일
Since you asked, I'm guessing the input values are negative.
t = linspace(0, 10, 1001);
lpf = tf(1, [1 1]) % Low-pass Filter
lpf = 1 ----- s + 1 Continuous-time transfer function.
u = ones(1, length(t));
lsim(lpf, -u, t), ylim([-1.2 0])

카테고리

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

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by