Formulating maximization problem subject to null-space constraint

I have a maximization problem subjected to a null-space constraint in the form:
Q = max f(x);
subject to: Nullspace(P(x)*H') = 0
Here, 'x' is the independent variable. 'P' is dependent on 'x' and is a matrix. 'H' is a constant matrix.
How can i formulate this optimization problem in MATLAB ? Using 'fmincon' it seems not possible because the equality constraint is a matrix.

6 件のコメント

Torsten
Torsten 2019 年 7 月 2 日
P(x) is a matrix ?
Hirak Basumatary
Hirak Basumatary 2019 年 7 月 2 日
Yes, P(x) is a matrix.
Torsten
Torsten 2019 年 7 月 2 日
What are the dimensions of H and P(x) ?
Hirak Basumatary
Hirak Basumatary 2019 年 7 月 2 日
P = 6 by 6 matrix.
H = 12 by 6 matrix
Torsten
Torsten 2019 年 7 月 2 日
Then P*H' is 6x12, and the nullspace can never be 0.
Bruno Luong
Bruno Luong 2019 年 7 月 2 日
Exact. One more reason why the problem as stated is meaningless

サインインしてコメントする。

回答 (1 件)

Bruno Luong
Bruno Luong 2019 年 7 月 2 日
編集済み: Bruno Luong 2019 年 7 月 2 日

0 投票

FMINCON (or any optimizer) cannot solve this kind of problem, your asmmissible space is not close set, since the constraint can be written as abs(smallest eigen values) > 0.

カテゴリ

質問済み:

2019 年 7 月 2 日

コメント済み:

2019 年 7 月 2 日

Community Treasure Hunt

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

Start Hunting!

Translated by