I have an equation
q(s) = s^5 + s^4 + 4s^3 + 4Ks^2 + 2Ks + K
The answer I have indicated is 0.5361 < K < 0.9326.
Can this be done in Matlab, and if so how?
My apologies I am still feeling my way through Matlab.
Regards.
Printable View
I have an equation
q(s) = s^5 + s^4 + 4s^3 + 4Ks^2 + 2Ks + K
The answer I have indicated is 0.5361 < K < 0.9326.
Can this be done in Matlab, and if so how?
My apologies I am still feeling my way through Matlab.
Regards.
Try this
Code:syms s K;
solve('s^5 + s^4 + 4*s^3 + 4*K*s^2 + 2*K*s + K','K')
I'm not an expert in MATLAB, but are you sure you want to use the symbolic toolbox? You've got a quintic polynomial there, which likely doesn't have an analytical solution. In fact, the OP specified a root in a particular interval.
Using your code pickslides I get
ans =
-(s^5 + s^4 + 4*s^3)/(4*s^2 + 2*s + 1)
To me that has not solved for K. The other way to my thinking is to go through the Routh array but for such a complex function this seems daunting and time consuming...and that's assuming it is even possible that way.
Regards.
Solve what, this is not an equation for solving? State clearly exactly what you want to find and what you have to start with. In other words tell us what the real question is.
For example do you mean findsuch that:
?
(which is verging on the trivial, so not likely to be what you mean)
CB
s^5 + s^4 + 4s^3 + 2Ks + K = 0 is the denominator of a given transfer function.
The question asks to find out whether the system is stable using the Routh Hurwitz criterion, then determine its range of stability for K > 0. I thought it may be possible to be done on Matlab...
People without Mathlab may try to solve the problem searching the value of k for which the roots of...
(1)
... have all negative real part use the following approach. Let's suppose to search the values of k for whichhas a factor
with
, such that is...
(2)
Comparing (1) and (2) we arrive to the following system of equation...
... which leads to the pair of equations...
![]()
(3)
... the solutions of which are...
Kind regards
![]()
Thanks so much for this solution. Could you please explain it with some greater detail?
By the way - the Matlab script I was referred to is a great piece of script - but does not accept terms such as "k"...
Regards.