fmincon function handle using matrix

13 ビュー (過去 30 日間)
Maite Alonso Parra
Maite Alonso Parra 2018 年 8 月 22 日
回答済み: Torsten 2018 年 8 月 22 日
Hi I'm trying to solve a portfolio optimization problem using fmincon. I want to specify de Function to minimize with a function handle in witch X is a vector and L an m*m matrix.
function y = myfun(X,L) y = X'*L*X; end
How could I do? I don't use quadprog because I want to use nonlinear constrictions.

採用された回答

Torsten
Torsten 2018 年 8 月 22 日
myfun = @(x,L)x.'*L*x;
objfun = @(x)myfun(x,L);
sol = fmincon(objfun,...)
with x being an (mx1) column vector.
Best wishes
Torsten.

その他の回答 (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