Box's Evolutionary algorithm

版本 1.1.0.0 (1.5 KB) 作者: Vaibhav
Solves multivariable unconstrained optimization
257.0 次下载
更新时间 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://ww2.mathworks.cn/matlabcentral/fileexchange/62649-box-s-evolutionary-algorithm), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2014b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Nonlinear Optimization 的更多信息

Box's evolutionary algorithm/

版本 已发布 发行说明
1.1.0.0

Included the function used in zip file.

1.0.0.0