Failure in initial user-supplied objective function evaluation
Mostra commenti meno recenti
abc = @fun1;
x0 = [0,0];
lb = [0,0];
ub = [0.7,0.7];
x = simulannealbnd(abc,x0,lb,ub)
Risposte (1)
Try
abc = @fun1;
x0 = [0,0];
f = abc(x0);
and see what is returned in f.
1 Commento
ASWATHI V
il 9 Apr 2019
Categorie
Scopri di più su Startup and Shutdown in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!