• 大小: 33.47MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-14
  • 语言: 其他
  • 标签: cec  2017  benchmark  functi  

资源简介

cec2017 bound constrained 测试函数资料,包含测试函数代码,提交论文的结果,总结,函数定义,以及评价准则等信息

资源截图

代码片段和文件信息

%This function is used for L-SHADE bound checking 
function vi = boundConstraint (vi pop lu)

% if the boundary constraint is violated set the value to be the middle
% of the previous value and the bound
%

[NP D] = size(pop);  % the population size and the problem‘s dimension

%% check the lower bound
xl = repmat(lu(1 :) NP 1);

pos = vi < xl;
vi(pos) = (pop(pos) + xl(pos)) / 2;

%% check the upper bound
xu = repmat(lu(2 :) NP 1);
pos = vi > xu;
vi(pos) = (pop(pos) + xu(pos)) / 2;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      20480  2017-05-29 14:11  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\.lshade.cc.swp

     文件      40565  2017-05-29 14:07  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\cec17_test_func.cc

     文件     205776  2017-05-29 14:23  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\cec17_test_func.o

     文件       1535  2017-05-29 14:25  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\D10.rez

     文件       2075  2017-05-29 14:25  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\D100.rez

     文件       1825  2017-05-29 14:25  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\D30.rez

     文件       1873  2017-05-29 14:25  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\D50.rez

     文件       3643  2017-05-29 14:07  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\de.h

     文件       2520  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D10.txt

     文件     250200  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D100.txt

     文件        104  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D2.txt

     文件      10040  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D20.txt

     文件      22560  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D30.txt

     文件      62600  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_10_D50.txt

     文件       2520  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_11_D10.txt

     文件     250200  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_11_D100.txt

     文件      22560  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_11_D30.txt

     文件      62600  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_11_D50.txt

     文件       2520  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_12_D10.txt

     文件     250200  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_12_D100.txt

     文件      22560  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_12_D30.txt

     文件      62600  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_12_D50.txt

     文件       2520  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_13_D10.txt

     文件     250200  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_13_D100.txt

     文件      22560  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_13_D30.txt

     文件      62600  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_13_D50.txt

     文件       2520  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_14_D10.txt

     文件     250200  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_14_D100.txt

     文件      22560  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_14_D30.txt

     文件      62600  2017-05-29 14:08  cec2017 bound constrained\case of top method\jSO-SOURCE-RESULTS\input_data\M_14_D50.txt

............此处省略1859个文件信息

评论

共有 条评论