Questions tagged [linear-matrix-inequality]

Linear Matrix Inequalities (LMIs)

A linear matrix inequality (LMI) is an expression of the form

$$A_0 + y_1 A_1 + y_2 A_2 + \cdots + y_m A_m \succeq O_n$$

where $y \in \mathbb R^m$ and $A_0, A_1, \dots, A_m$ are symmetric $n \times n$ matrices. The generalized inequality $Q \succeq O_n$ means that $Q$ is a positive semidefinite matrix.

This linear matrix inequality specifies a convex constraint on $y$.

There are efficient numerical methods to determine whether an LMI is feasible (e.g., whether there exists a vector $y$ such that LMI($y) \ge 0$), or to solve a convex optimization problem with LMI constraints. Many optimization problems in control theory, system identification and signal processing can be formulated using LMIs. Also LMIs find application in Polynomial Sum-Of-Squares. The prototypical primal and dual semidefinite program is a minimization of a real linear function respectively subject to the primal and dual convex cones governing this LMI.

See also: Wikipedia

191 questions
1
vote
0 answers

A problem combining linear and nonlinear matrix inequalities

I have a matrix inequality problem (don't know if this holds): $A \in \mathbb{R}^{m \times n}$, $B_i \in \mathbb{R}^{n \times n}$, $i=1, 2, \dots, m$. $B_i$ is Hermitian. $Ax>0$ doesn't have a solution. $Ax=0$ has non-zero solutions. There exists a…
1
vote
1 answer

Matrix operator norm inequality proof

For any matrix $A \in \mathbb{R}^{m,n}$ and any $u \in \mathbb{R}^{m}$ and $v \in \mathbb{R}^n$, how to proof the following inequality? $$ |u^\top A v | \leq \|A\|_{op} \|u\|_1 \|v\|_1 $$ In general, where can I find reference for matrix norm…
cccfran
  • 23
1
vote
0 answers

Linear matrix inequality

I have the following LMI (linear matrix inequality): $F^TP+PF\leq 0$ where $P$ is a positive definite matrix. if I have the following condition $Q\leq P$, $Q$ is a positive definite matrix. is it right to write the LMI as $F^TQ+QF\leq 0$ ?
1
vote
1 answer

How to compute an Linear Matrix Inequality region for a conical sector

I have to compute a matrix $P$ that defines an Linear Matrix Inequality region in the following way $$L_P = \{ s\in \mathbb{C}|\begin{pmatrix}I \\sI \end{pmatrix}^* P\begin{pmatrix}I \\sI \end{pmatrix}\prec 0\} $$ for the constraint $|\Re (s)|>…
cholo14
  • 451
0
votes
0 answers

Convert Discrete Riccati Equation to LMI for multi-model LQG problem

I am interested in solving the multi-model discrete-time LQG problem, that is to synthesize a stabilizing output feedback controller that stabilizes all systems with matrices $A_i, B_i,C_i,D_i$ with $i=1, ...,n$ . The problem for the single model…