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://jp.mathworks.com/matlabcentral/fileexchange/62649-box-s-evolutionary-algorithm), MATLAB Central File Exchange. 取得日: .

MATLAB リリースの互換性
作成: R2014b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersNonlinear Optimization についてさらに検索
タグ タグを追加
バージョン 公開済み リリース ノート
1.1.0.0

Included the function used in zip file.

1.0.0.0