Fractional order root locus
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)
Cite As
Zhuo Li (2024). Fractional order root locus (https://www.mathworks.com/matlabcentral/fileexchange/50458-fractional-order-root-locus), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
- Control Systems > Control System Toolbox > Control System Design and Tuning > Classical Control Design >
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.