Failure in initial user-supplied objective function evaluation
Ältere Kommentare anzeigen
abc = @fun1;
x0 = [0,0];
lb = [0,0];
ub = [0.7,0.7];
x = simulannealbnd(abc,x0,lb,ub)
Antworten (1)
Try
abc = @fun1;
x0 = [0,0];
f = abc(x0);
and see what is returned in f.
1 Kommentar
ASWATHI V
am 9 Apr. 2019
Kategorien
Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!