フィルターのクリア

How to find global minimum of a schwefel function

9 ビュー (過去 30 日間)
Atinesh Singh
Atinesh Singh 2016 年 12 月 1 日
コメント済み: Asi angel 2021 年 4 月 16 日
I am trying to find the global minimum of a schwefel function which is 0 at [420.9687,..., 420.9687]. I have used 'fmincon', Particle swarm Optimization algorithm (I'm using my code for this approach) and some other evolutionary algorithms. But none of them is giving global minimum at 0, All are giving some large positive value. Can anybody tell me how can I find global minimum of the schwefel function.
function y = schwefel(x)
s = sum(-x.*sin(sqrt(abs(x))));
y = 418.9829*length(x) + s;
end
  1 件のコメント
Pedro
Pedro 2020 年 3 月 29 日
Its a benchmark function, it has many local minima in a short space
So general purpose algorithms get stock in its multiple minima

サインインしてコメントする。

回答 (2 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2020 年 3 月 29 日
You can try optimization toolbox's fsolve nonlinear equation solver with "Trust region dogleg" algorithm.

amir ansari
amir ansari 2020 年 9 月 5 日
you can try cuckoo search on this problem, schwefel function is a hard function for optimizition algorithm even PSO..but cuckoo can solve it better... trust me!
  1 件のコメント
Asi angel
Asi angel 2021 年 4 月 16 日
May you send to me the code?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeParticle Swarm についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by