Box's Evolutionary algorithm

Version 1.1.0.0 (1.49 KB) by Vaibhav
Solves multivariable unconstrained optimization
257 Downloads
Updated 22 Apr 2017

View License

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

Cite As

Vaibhav (2026). Box's Evolutionary algorithm (https://in.mathworks.com/matlabcentral/fileexchange/62649-box-s-evolutionary-algorithm), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2014b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Nonlinear Optimization in Help Center and MATLAB Answers
Version Published Release Notes
1.1.0.0

Included the function used in zip file.

1.0.0.0