How can I transform s domain to z domain at Matlab ?

302 ビュー (過去 30 日間)
BERK GÖKMEN
BERK GÖKMEN 2018 年 5 月 28 日
コメント済み: Walter Roberson 2024 年 12 月 10 日
I have one equations.Transfer function s/(s+0.9425).And I want transform z domain. Can you help me ? Thank you.

採用された回答

Nikhil Negi
Nikhil Negi 2018 年 5 月 29 日
編集済み: Walter Roberson 2024 年 12 月 10 日
Hello Berk,
you can use 'c2d' function in matlab to convert a continous transfer function into a discrete transfer function. eg Hc=h=tf([1,0],[1, 0.9425])
Hc=h=tf([1,0],[1, 0.9425])
Hd=c2d(Hc,Ts)
here Ts is the sampling time.
  4 件のコメント
Donghyun Lee
Donghyun Lee 2021 年 5 月 28 日
right, my result was same as @Oncel AKIN's. I guess that there is a mistake too.
i really want to get clear answer about this question as soon as possible!
Paul
Paul 2021 年 5 月 28 日
c2d() offers a variety of methods to convert from continuous to discrete. One of those methods will match your expected result.
doc c2d

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

その他の回答 (2 件)

Anthony Adekoya
Anthony Adekoya 2021 年 3 月 29 日
How can I write a program in Matlab which determines the characteristics of the analogue filter which include the following:
• The step response of the RC low pass filter
• The impulse response of the RC low pass filter
• The frequency response of the RC low pass filter
  1 件のコメント
Walter Roberson
Walter Roberson 2024 年 12 月 10 日
This is a completely different question unrelated to the original, and should be asked by itself.

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


Frantz Bouchereau
Frantz Bouchereau 2024 年 12 月 10 日
You can use the bilinear function or the impinvar function to convert a continuous-time transfer function to a discrete-time equivalent.

製品

Community Treasure Hunt

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

Start Hunting!

Translated by