Box's Evolutionary algorithm

버전 1.1.0.0 (1.49 KB) 작성자: Vaibhav
Solves multivariable unconstrained optimization
다운로드 수: 258
업데이트 2017/4/22

라이선스 보기

function used in the script
% Function of Box's evolutionary Optimization Method
function fval = evolutionfun(x)
x1 = x(1);
x2 = x(2);


fval = ((x1.^2+ x2 -11).^2 + (x1 + x2.^2-7).^2) ; % enter your function here
end
% save this function in the same place as the script file

인용 양식

Vaibhav (2026). Box's Evolutionary algorithm (https://kr.mathworks.com/matlabcentral/fileexchange/62649-box-s-evolutionary-algorithm), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Nonlinear Optimization에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.1.0.0

Included the function used in zip file.

1.0.0.0