I am looking for a method to calculate the numerical values of the roots of a function using the root locus method in Julia. I have found some documents to plot the root locus but couldn't find a method to get the numerical values of those roots for particular 'K'.
using ControlSystems
K = 100
a = 5
b = 10
G = 1 + K^b / (x^(b-1) * (x - a))
I want to find the roots of "G" using the root locus method in Julia.
Could you please help?
Thank you
The function
rlocusplotis available if you import the fullControlSystemspackage as opposed to justControlSystemsBase(downside is a very long initialization time).This worked for me: