Obtaining a matrix of all the values the optimizer tried
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Spyros Polychronopoulos
il 25 Set 2018
Modificato: Spyros Polychronopoulos
il 26 Set 2018
Hi there, I have this optimizer minimizing f. The optimizer is trying various values for x variable. Would you maybe have an idea how I can obtain when the optimizer finishes a matrix with the x values the optimizer tried?
clearvars
f = @(x) x.^2;
x0=5;
x_min = -10;
x_max = 10;
TimeLimit_SA = 20;
options = optimoptions(@simulannealbnd,'TimeLimit',TimeLimit_SA);
[x_best,f_best,exitflag,output]=simulannealbnd(f,x0,x_min,x_max,options);
0 Commenti
Risposta accettata
Matt J
il 25 Set 2018
8 Commenti
Spyros Polychronopoulos
il 26 Set 2018
Modificato: Spyros Polychronopoulos
il 26 Set 2018
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Particle Swarm in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!