Failure in initial user-supplied objective function evaluation
Afficher commentaires plus anciens
abc = @fun1;
x0 = [0,0];
lb = [0,0];
ub = [0.7,0.7];
x = simulannealbnd(abc,x0,lb,ub)
Réponses (1)
Try
abc = @fun1;
x0 = [0,0];
f = abc(x0);
and see what is returned in f.
1 commentaire
ASWATHI V
le 9 Avr 2019
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!