Questions tagged [controlsystems.jl]

2 questions
0
votes
1 answer

How to find roots for particular value of gain "K" using Root Locus method in Julia?

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…
0
votes
1 answer

Extracting and re-using subplots in Julia

How can I extract and reuse/combine subplots in Julia? Consider: pp = plot(0:0.01:2, [sin.(0:0.01:2), cos.(0:0.01:2)], layout=(1,2)); gg = plot(0:0.01:2, [sin.(0:0.01:2).^2, cos.(0:0.01:2).^2], layout=(1,2)); Both pp and gg report length 2 and…
ITA
  • 3,200
  • 3
  • 18
  • 32