이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
Given a high order stable transfer function G, this code would compute the reduced order equivalent model for the system using Routh Approximation (or Gamma-Delta Approximation) of required degree.
Refer : V. Krishnamurthy and V. Sheshadri, " A simple and direct method for reducing order of systems using routh approximations in frequency domain", IEEE Transactions on Automatic Control, Vol. 21, pp. 797-799, Oct. 1976.
Function
RouthApprox=Routh_Approximation(G,r)
Computes the r-th order Routh Approximation of a given n-th order
transfer function G, with 1<=r<=n.
Example
G=tf([1 2],[1 3 4 5])
r=2;
R=Routh_Approximation(G,r)
gives the output as
0.5714 s + 1.143
R= ---------------------
s^2 + 2.286 s + 2.857
인용 양식
Janardhanan Sivaramakrishnan (2026). Routh Approximation (https://kr.mathworks.com/matlabcentral/fileexchange/21457-routh-approximation), MATLAB Central File Exchange. 검색 날짜: .
