Box's Evolutionary algorithm
Versión 1.1.0.0 (1,49 KB) por
Vaibhav
Solves multivariable unconstrained optimization
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
Citar como
Vaibhav (2026). Box's Evolutionary algorithm (https://la.mathworks.com/matlabcentral/fileexchange/62649-box-s-evolutionary-algorithm), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2014b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre Nonlinear Optimization en Help Center y MATLAB Answers.
Etiquetas
Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
