Failure in initial user-supplied objective function evaluation
Mostrar comentarios más antiguos
abc = @fun1;
x0 = [0,0];
lb = [0,0];
ub = [0.7,0.7];
x = simulannealbnd(abc,x0,lb,ub)
Respuestas (1)
Try
abc = @fun1;
x0 = [0,0];
f = abc(x0);
and see what is returned in f.
1 comentario
ASWATHI V
el 9 de Abr. de 2019
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!