필터 지우기
필터 지우기

Matlab > Genetic annotator > HELP

조회 수: 1 (최근 30일)
Inderjeet Singh
Inderjeet Singh 2016년 1월 21일
댓글: Alan Weiss 2016년 1월 21일
HELP > Coding and Minimizing a Fitness Function Using the Genetic Algorithm > Minimizing Using Additional Arguments
Following line has been given, but it don't tell where to define these values? I tried to write in its fitness function and I tried to enter these values at different places in GA in matlab.
a = 100; b = 1; % define constant values
Please let me know, where to enter these constant values?

답변 (1개)

Walter Roberson
Walter Roberson 2016년 1월 21일
Define your function as taking two additional arguments, a, and b. Then when you call ga, instead of just giving a handle to your function, like
ga(@myObjectiveFunction, ....)
call
a = 100;
b = 1;
ga(@(x) myObjectiveFunction(x,a,b), .....)
  댓글 수: 5
Inderjeet Singh
Inderjeet Singh 2016년 1월 21일
I tried to write it in matlab as shown in image and it gave errors too.
Alan Weiss
Alan Weiss 2016년 1월 21일
You saw that the first time you ran the code it worked fine. You saw that the second time there was an error. What was the difference between these two times? Look hard at the end of the ga call, you will see that the time it worked was when you had a ,2 toward the end of the line. What does this 2 mean? Look at the syntax for ga and see if you can figure it out.
Alan Weiss
MATLAB mathematical toolbox documentation

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

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by