フィルターのクリア

Discrete z to convert z^-1

26 ビュー (過去 30 日間)
Marek Hutta
Marek Hutta 2024 年 1 月 21 日
回答済み: Walter Roberson 2024 年 1 月 21 日
Hello. Change i it correctly?
0.0004773 (z+0.9544)
---------------------
(z-0.9591) (z-0.9064)
to
0.0004773z^-1 (1+0.9544z^-1)
---------------------
(1-0.9591z^-1) (1-0.9064z^-1)

採用された回答

Paul
Paul 2024 年 1 月 21 日
z = zpk('z',-1);
H = 0.0004773 * (z+0.9544)/ (z-0.9591) / (z-0.9064)
H = 0.0004773 (z+0.9544) --------------------- (z-0.9591) (z-0.9064) Sample time: unspecified Discrete-time zero/pole/gain model.
H.Variable = 'z^-1'
H = 0.0004773 z^-1 (1+0.9544z^-1) ----------------------------- (1-0.9591z^-1) (1-0.9064z^-1) Sample time: unspecified Discrete-time zero/pole/gain model.

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2024 年 1 月 21 日
z = tf('z');
Gz = 0.0004773*(z+0.9544) / ((z-0.9591)* (z-0.9064))
Gz = 0.0004773 z + 0.0004555 ----------------------- z^2 - 1.865 z + 0.8693 Sample time: unspecified Discrete-time transfer function.
Gz1 = tf(Gz.Numer, Gz.Denom, Gz.Ts, 'Variable', 'z^-1')
Gz1 = 0.0004773 z^-1 + 0.0004555 z^-2 ------------------------------- 1 - 1.865 z^-1 + 0.8693 z^-2 Sample time: unspecified Discrete-time transfer function.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by