Multi variable Simulated Annealing with different bounds
Mostra commenti meno recenti
Hi there, I have this function that has two variables x and y
fun = @(x,y) x+y-5;
I would like to find the global minimum of this function using SA optimiser. Now the problem that I have here is that I want to use different boundary conditions for x and y like so
x0 = rand;
LBx = 0; % LBx - lower bound for x
UBx= 10; % UBx - upper bound for x
y0 = rand;
LBy = -2; % LB - lower bound for x
UBy= 3; % UB - upper bound for y
The line below is obviously not working but I am posting it as a reference to explain what I am trying to do
[x,y,fval]=simulannealbnd(fun,x0,LBx,UBx,y0,LBy,UBy); %simulated annealing
Thank you very much in advance for your help
Risposta accettata
Più risposte (1)
Spyros Polychronopoulos
il 21 Set 2018
Modificato: Spyros Polychronopoulos
il 21 Set 2018
0 voti
Categorie
Scopri di più su Simulated Annealing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!