How to maximize this function: x1^2+x2^2+...+xn^2 ?

Hello
How can I maximize the function x1^2+x2^2+...+xn^2
under some constraints which are LINEAR?
Thank you very much in advance!
Alex

Risposte (2)

Sean de Wolski
Sean de Wolski il 2 Lug 2012
fmincon

1 Commento

Or how about QUADPROG?
H = identity matrix
f = zero vector
A,b = your linear constraints

Accedi per commentare.

Richard Brown
Richard Brown il 3 Lug 2012
Modificato: Richard Brown il 3 Lug 2012
I assume you mean minimise rather than maximise, because unless you have n independent constraints, your problem is unbounded.
In this case, assuming your constraints are Ax = b, just use the QR factorisation
[Q, R] = qr(A', 0);
x = Q * (R' \ b);

1 Commento

just reread your question - if your constraints are inequalities, quadprog is the way to go

Accedi per commentare.

Categorie

Richiesto:

il 2 Lug 2012

Community Treasure Hunt

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

Start Hunting!

Translated by