Failure in initial user-supplied objective function evaluation

abc = @fun1;
x0 = [0,0];
lb = [0,0];
ub = [0.7,0.7];
x = simulannealbnd(abc,x0,lb,ub)

Answers (1)

Torsten
Torsten on 8 Apr 2019
Edited: Torsten on 8 Apr 2019
Try
abc = @fun1;
x0 = [0,0];
f = abc(x0);
and see what is returned in f.

Categories

Products

Tags

Asked:

on 7 Apr 2019

Commented:

on 9 Apr 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!