MATLAB: How to transform s domain to z domain at Matlab

equationmathematicsMATLABmatlab function

I have one equations.Transfer function s/(s+0.9425).And I want transform z domain. Can you help me ? Thank you.

Best Answer

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.
https://www.mathworks.com/help/control/ref/c2d.html