How can I transform s domain to z domain at Matlab ?
162 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
BERK GÖKMEN
am 28 Mai 2018
Kommentiert: Walter Roberson
am 10 Dez. 2024
I have one equations.Transfer function s/(s+0.9425).And I want transform z domain. Can you help me ? Thank you.
0 Kommentare
Akzeptierte Antwort
Nikhil Negi
am 29 Mai 2018
Bearbeitet: Walter Roberson
am 10 Dez. 2024
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 Kommentare
Donghyun Lee
am 28 Mai 2021
i really want to get clear answer about this question as soon as possible!
Paul
am 28 Mai 2021
c2d() offers a variety of methods to convert from continuous to discrete. One of those methods will match your expected result.
doc c2d
Weitere Antworten (2)
Anthony Adekoya
am 29 Mär. 2021
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 Kommentar
Walter Roberson
am 10 Dez. 2024
This is a completely different question unrelated to the original, and should be asked by itself.
Frantz Bouchereau
am 10 Dez. 2024
You can use the bilinear function or the impinvar function to convert a continuous-time transfer function to a discrete-time equivalent.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Analog Filters finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!