How can I transform s domain to z domain at Matlab ?
조회 수: 420 (최근 30일)
이전 댓글 표시
I have one equations.Transfer function s/(s+0.9425).And I want transform z domain. Can you help me ? Thank you.
댓글 수: 0
채택된 답변
Nikhil Negi
2018년 5월 29일
편집: Nikhil Negi
2018년 5월 29일
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
댓글 수: 4
Donghyun Lee
2021년 5월 28일
i really want to get clear answer about this question as soon as possible!
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
추가 답변 (1개)
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Analog Filters에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!