I have to use Fourier Transform without frequency range?

1 回表示 (過去 30 日間)
Chris
Chris 2021 年 10 月 15 日
コメント済み: Star Strider 2021 年 10 月 15 日
I have to use Fourier Transform without frequency range?

採用された回答

Star Strider
Star Strider 2021 年 10 月 15 日
One approach —
A = [1 0.43 0.95];
B = [0.97 0.43 0.97];
[h,t] = impz(B,A);
figure
subplot(2,1,1)
plot(t, h)
grid
subplot(2,1,2)
plot(t,h)
grid
axis([0 100 [-1 1]*0.1])
Experiment to get different results, and consider using the Control System Toolbox functions as well.
H = tf(B,A)
H = 0.97 s^2 + 0.43 s + 0.97 ------------------------ s^2 + 0.43 s + 0.95 Continuous-time transfer function.
figure
impulse(H)
It would of course help to know the sampling frequency.
.
  1 件のコメント
Star Strider
Star Strider 2021 年 10 月 15 日
The Fourier transform requirement was not part of — and not mentioned in — the original question. It was originally about finding the impulse response of the IIR filter described by ‘A’ and ‘B’.
I am not certain what ‘Fourier Transform without frequency range’ means in this context. If further information exists to expand on that, I will do my best to at least outline the approach.
.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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