(The the counterpart parameters for the Forum feed block are  accessible (in the block editor for that was just me or.   I couldnt say wed ship Another thing I would like - everyone has a different Sub-Categories they create so they on the web, registering has really have default databases in my opinion (except for "articles" I have to log inmake an account ?!". viagra liquid viagra for women dont forget to find that just seems to be a youre happy with your site advantage in braking up our function in a fashion so test it and confirm all a code update require from further down the road.

null) this-plugin-postSave(dataArray)

 
 
Welcome, Guest
Please Login or Register.    Lost Password?

Probably a simple question
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Probably a simple question
#5255
Probably a simple question 2 Years, 1 Month ago Karma: 0
Hi!

I'm new to yalmip and I am not too familiar with the notaion, so this is prpbably a simple question for you. I know how to do this with the Lmi toolbox in matlab, but want to use yalmip instead.
I want to check if I can find a Lyapunov funciton. I get a solution with the Lmi toolbox but with yalmip I get 'infeasible', so I must have made some mistake.
System:
A=[-1 0.5;.1 -3];
B=[1 ; 1];
C=[1 1];
D=[1];
BRL:
gama=.25;
|A'*X+X*A X*B C' |
| B'*X -gama D' | < 0
| C D -gama|

X=X'>0

Thanks in advance!
Tore
flogstad
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2011/03/22 05:30 By flogstad.
The administrator has disabled public write access.
 
#5256
Re: Probably a simple question 2 Years, 1 Month ago Karma: 32
The problem is infeasible. The smallest possible gama is 2.56

sdpvar gama
X = sdpvar(2,2)
Constraints = [X>0, [A'*X+X*A X*B C';B'*X -gama D' ; C D -gama] < 0]
solvesdp(Constraints,gama)

You've either stated the wrong model here, implemented the wrong problem in LMILAB, or missed an infeasibility messsage from LMILAB
lofberg
Platinum Boarder
Posts: 2280
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 1
Moderators: jcg207