Error "Supplied objective function must return a scalar value."
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ANCY S GEORGE
le 3 Juin 2022
Modifié(e) : ANCY S GEORGE
le 30 Jan 2023
Hi,I am trying to minimize a function,but shows an error,
Error using fmincon (line 641)
Supplied objective function must return a scalar value.
Error in program23 (line 56)
[a,fv] = fmincon(f,X0,[],[],[],[],[3 3],[8 8])
Can someone explain me why? Please help me to correct this code.
Thanks in advance
0 commentaires
Réponse acceptée
Torsten
le 3 Juin 2022
The function you pass to fmincon returns a vector of values, not a scalar.
Maybe you mean
f=@(a) norm(sum(((a(1).*(G(x,:)+m)+a(2).*(G(y,:)+p)+gb*(H(x,:)./(a(1)))+gb*(H(y,:)./(a(2)))))));
or something similar.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Entering Commands dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!