Error in while loop

2 views (last 30 days)
Mughees Asif
Mughees Asif on 19 Mar 2019
Commented: Torsten on 19 Mar 2019
function IsStable(polynomial)
if AllNonZero(polynomial) == false
H=[]
elseif AllSameSign(polynomial) == false
H=[]
else
HurwitzMatrix(polynomial);
pm = length(polynomial);
while i=1:pm
minor(i)=det(polynomial(1:i,1:i));
end
if minor(i)>0
B=1
else
B=0
end
end
I am trying to run this code but get this error,
Undefined function or variable 'minor'.
Error in IsStable (line 12)
if minor(i)>0
Any suggestions? Thank you.

Accepted Answer

Torsten
Torsten on 19 Mar 2019
Do you want a different value for B for each minor, i.e. B(i) instead of B ?
Then use
function IsStable(polynomial)
if AllNonZero(polynomial) == false
H = []
elseif AllSameSign(polynomial) == false
H = []
else
HurwitzMatrix(polynomial);
pm = length(polynomial);
for i = 1:pm
minor(i) = det(polynomial(1:i,1:i));
if minor(i) > 0
B(i) = 1
else
B(i) = 0
end
end
end
  4 Comments
Mughees Asif
Mughees Asif on 19 Mar 2019
This is not for a specific polynomial, it should work forany arbitrary polynomial,
So for example, this is how I call the function in the command window,
>>IsStable([1.0000 1.2000 0.8562 0.3360 0.0321 0.0539])
The input vector can be any arbitrary vector basically. Thank you for the replies.
Torsten
Torsten on 19 Mar 2019
And what do you expect polynomial(1:i,1:i) to be for this polynomial ? As defined, your polynomial is a vector, not a matrix.

Sign in to comment.

More Answers (0)

Categories

Find more on Polynomials in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!