Errors in Simulated Annealing (simulannealbnd) algorithm.

조회 수: 9 (최근 30일)
Thegiuso
Thegiuso 2020년 5월 25일
댓글: Thegiuso 2020년 5월 28일
Hi guys!
I have a problem applying this optimization algorithm to my function.
My function, basically, is a Forex Trading algorithm that takes as input a 10-parameter X vector which must be optimized through simulated annealing, in fact the data on which to perform the trading analysis are passed to the program as global variables .
Once I try to perform the optimization I get this series of errors that I can't understand the source of the problem in order to solve them.
I would be very grateful if you would help me with this.

채택된 답변

Geoff Hayes
Geoff Hayes 2020년 5월 25일
Giuseppe - the error message is telling you that the code in your ForexFun is NOT using positive integers or logical values when indexing into arrays at the line
if askW(idx)>askW(idx-X(9)) + min(MFL(idx-1),MFL(idx-2))
Presumably idx is an integer and that askW and MFL are arrays (or is one a function?). Since X is the ten element array and you are subtracting the ninth element from idx, what guarantees are there that idx - X(9) is a positive integer? Are you assuming that this is the case or maybe you need to round up to the nearest integer? Or maybe the error is with something else in this line. I recommend that you put a break point at this l ine or add some logging (via fprintf) to write out the indices before this line of code so that you can get an idea of what is happening.
  댓글 수: 11
Geoff Hayes
Geoff Hayes 2020년 5월 28일
Glad that it worked out! It's been years since I've thought about simulated annearling. :)
Thegiuso
Thegiuso 2020년 5월 28일
Yes, in my simulation your solution is acceptable!
I think this is the only way to "impose" integer variables in simulated annealing.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulated Annealing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by