How can you find the poles of a steady state system using c2d and the sampling frequency ?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi everyone,
I have the steady state model of a system which I want to discretise. I also have the sampling frequency. I have used c2d but I don´t know how I may I identify the poles of the system to assess its stability. Any help would be greatly appreciated.
댓글 수: 0
답변 (1개)
Jon
2020년 10월 13일
편집: Jon
2020년 10월 13일
Suppose you have a continuous plant model g and you discretize it with the sampling period ts
% discretize
gd = c2d(g,ts)
% find poles
p = pole(gd)
% check stability (poles must be inside of unit circle for discrete system stability)
isStable = all(abs(p) < 0)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear Model Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!