Mostra commenti meno recenti
i would like to ask how to obtain the matrix E, which satisfy the following constrain,
E * [x]' >=0
I need the matrix E for stability analysis of piecewise linear system.
but not sure how to find this. if anyone knows plz help me out.
Risposte (1)
Walter Roberson
il 29 Giu 2011
Are you sure you don't mean
[x] * E * [x]' >= 0
If you do then E would be an example of a positive semi-definite matrix. Such matrices are not unique.
To generate an N x N positive semi-definite matrix, you can use
t = rand(N,N);
E = t' * t;
and E will now be positive semi-definite.
If the above is not what you mean, then E would have to be a column vector and [x]' would have to be a row vector. If the values of x are not fixed in advance, then the only solution is that E is the all-zero vector. There may be other solutions if the permissible values of x are bounded.
4 Commenti
Asif
il 30 Giu 2011
Walter Roberson
il 1 Lug 2011
What, what is the shape of x, and the expected shape of E ?
Also, it would help if you mentioned what LMI means.
Walter Roberson
il 1 Lug 2011
Another question: >= 0 implies the result is a scalar, but your reference to "not necessarily be symmetric" implies a matrix result. Do you mean that each element of a resulting matrix E*x' is >= 0, or do you mean that E*x' is going to be a vector and each element of the vector will be >=0, or do you mean the result will be a scalar that will be >=0 ?
Asif
il 5 Lug 2011
Categorie
Scopri di più su Linear Matrix Inequalities in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!