Selection of Proper Optimization Function for Finding Global Minimum
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Adam Rish
am 29 Apr. 2021
Kommentiert: Adam Rish
am 29 Apr. 2021
I am currently working on the following optimization problem and want to ensure I am getting the global minimum. I am not familiar with optimization functions, so am not sure which algorithm is most appropriate for me. I have access to the Global Optimization Toolbox. The objective function is written as such:
function e2 = IOT_objective(r)
%want to minimize e2
% r --> A row vector with a size of 1 x n
% S --> matrix with a size of n x m
% dm --> A row vector with a size of 1 x m
e=dm-r*S;
e2=e*e';
end
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Direct Search finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!