fmincon and optimization with a symbolic matrix

2 ビュー (過去 30 日間)
ali akbar
ali akbar 2020 年 9 月 14 日
コメント済み: ali akbar 2020 年 9 月 14 日
I am working on the following optimization problem
syms t [1 16]
tt=reshape(t,[4],[4]);
a=tril(tt);
chi1=trasnpose(a)*a;
chi=randn(4,4);
fun=(chi1-chi).^2;
g=matlabFunction(fun)
gs=GlobalSearch;
opts=optimoption(@fmincon,'Algorithm','interior-point');
problem = createOptimProblem('fmincon','x0',[],'objective',g,'lb',[],'ub',[],'options',opts)
and I am getting an error
Undefined function 'optimoption' for input arguments of type 'function_handle'.
opts=optimoption(@fmincon,'Algorithm','interior-point');
I read on forum that fmincon doesn't solve symbolic problem so I tried another solver 'lsqnonlin' and lsqlin, but encountering a similar problem. Any help will be appreciated.

採用された回答

Steven Lord
Steven Lord 2020 年 9 月 14 日
The function is optimoptions (plural) not optimoption (singular).
  1 件のコメント
ali akbar
ali akbar 2020 年 9 月 14 日
Einstein was right, human stupidity has no bounds. Silly me. It solved the problem.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by