What function can I use for finding global optima in semi-infinite constraint optimization problem?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
siddhesh rane
am 22 Okt. 2017
Kommentiert: siddhesh rane
am 22 Okt. 2017
Below is the simplified version of problem I am trying to solve:
Minimize f(x) =l1+l2+l3
Subject to
20°≤θ1≤160°
200°≤θ2≤340°
200°≤θ3≤340°
Where, θ1,θ2,θ3=f(l1,l2,l3,ϕ)
30°≤ϕ≤150°
I believe this problem falls under semi-infinite constraints problem, how can I find out global optima of it? I read about fseminf function but it only gives local minima. Can it be optimized using GA?
0 Kommentare
Akzeptierte Antwort
Matt J
am 22 Okt. 2017
Bearbeitet: Matt J
am 22 Okt. 2017
I think a viable strategy would be to discretize ϕ into a finite set of values (say phi=30:150) and apply GA to the discretized problem. Then, take that solution and use it to initialize fseminf as applied to the original semi-infinite problem. Assuming GA does a decent job, you can reasonably expect the initial guess to be good enough so that the local optimization finds a global solution.
Weitere Antworten (1)
John D'Errico
am 22 Okt. 2017
Why not? Only you know what is inside f, so being able to say, of course it can, this is impossible to know.
Of course, you seem to think that GA will truly give a global optimum. No numerical optimization tool can assure that on a completely blackbox function. All that can be done is to improve the probability that it will find a point at the global min.
The best thing that you can do is based on your own knowledge of the process, i.e., to provide good starting values. Any intelligence that you can add to the problem will be worth more than any magical computer algorithm.
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!