Fractional order root locus

버전 1.1.0.0 (2.02 KB) 작성자: Zhuo Li
This function generates the root locus (RL) plot of a fractional order transfer function.
다운로드 수: 603
업데이트 날짜: 2015/4/10

라이선스 보기

This function generates the root locus (RL) plot of a fractional order
transfer function (for LTI systems). The first plot is the RL on the
s-plane, and the second plot is the RL on the 1st Riemann sheet of the s-plane
The input is the numerator and denominator polynomial coefficients,
and the fundamental order lambda (i.e. the lowest common denominator of
all the fractional orders on numerator and denominator).
The output returns the figure hundle.
E.g. for the transfer function below:
1.2s^{1.3}+1 1.2s^{13/10}+1
G(s) = ----------------------------- = ----------------------------------
0.8s^{2.6}+s^{1.3}+1 0.8s^{26/10}+s^{13/10}+1
lambda = 10;
num = [1.2 zeros(1,12) 1];
den = [0.8, zeros(1,12), 0.6, zeros(1, 12), 1];
The syntax for calling the function is: [fh1, fh2] = forlocus(num, den, lambda)

인용 양식

Zhuo Li (2024). Fractional order root locus (https://www.mathworks.com/matlabcentral/fileexchange/50458-fractional-order-root-locus), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Classical Control Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Corrected an error in the demo code
den = [0.8, zeros(1,22), 0.6, zeros(1, 22), 1]; changed to
den = [0.8, zeros(1,12), 0.6, zeros(1, 12), 1];

1.0.0.0