Speed up fminbnd using vectorization
Mostra commenti meno recenti
I am trying to optimize this piece of code. I am using the function fminbnd on a vector, splitting the task on its single entries using a loop.
Would it be possible to speed it up vectorizing the process?
for i = 1:A
for ii= 1:B
for iii = 1:C
fun = @(x) (x * variable(i,ii,iii))^2 ;
[arg_min(i,ii,iii), min_(i,ii,iii)] = fminbnd(fun,0,2);
end
end
end
Thanks for the attention.
Sincerely
Luca
Risposta accettata
Più risposte (2)
Luca Gagliardone
il 16 Ago 2017
Modificato: Luca Gagliardone
il 16 Ago 2017
Nick Durkee
il 24 Mag 2018
Modificato: Matt J
il 24 Mag 2018
0 voti
I actually developed a solution to this problem for my research. It's available on the file exchange.
Categorie
Scopri di più su Optimization 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!