how to create start point for multistart
조회 수: 2 (최근 30일)
이전 댓글 표시
Dear fellows,
I need a 8 variable functions need to minimize. DO you know how to self define the start point for multi start? For example,I have my variable [lb1,lb2,lb3,r,s1,b1,s2,b2]. I paticuly want to set up the start point for the first 4 variables. If can I let the start point to be the initial start point plus (up bound -lower bound)/100 for the first 4 variable?
Cheers, Xueqi
댓글 수: 0
답변 (1개)
Miroslav Balda
2013년 3월 3일
Your question is not very clear, however, the following solution may help you:
oristart = [lb1,lb2,lb3,r,s1,b1,s2,b2];
newstart = oristart + [(up bound-lower bound)/100*ones(4,1), zeros(4,1)];
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Global or Multiple Starting Point Search에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!