Genetic Algorithm Multiple Input Args
조회 수: 15 (최근 30일)
이전 댓글 표시
Okay so say I have the below code. I have a setup code that defines variables that are needed in the main function that is called by the genetic algorithm tool. And this is the method I found to pass these variables in but I continually get errors. Any help would be greatly appreciated. Thanks!
setup.m
B = 15;
D = 100;
%(more complicated in practice but just an example)
main.m
function z = main(A,B,D)
z = A*B*D
end
solver.m
setup
[x,fval] = ga(@(A) main(A,B,D),1,[],[],[],[],0,1)
댓글 수: 1
Alan Weiss
2016년 8월 22일
Please show us the exact errors you get (do not paraphrase, copy and paste the errors). Also, show us your exact (copy-pasted) function calls leading to the errors.
Alan Weiss
MATLAB mathematical toolbox documentation
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Genetic Algorithm에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!