This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

12
FOTF Toolbox/c7mbench5.m Normal file
View File

@ -0,0 +1,12 @@
function y=c7mbench5(t,x,k)
% C7MBENCH the function describing Benchmark Problem 5
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last Modified 18 May, 2022
switch k
case 1
y=(((x(2)-0.5)*(x(3)-0.3))^(1/5)+sqrt(t))/sqrt(pi);
case 2, y=(x(1)-1)*gamma(2.2);
case 3, y=(x(2)-0.5)*gamma(2.3)/gamma(2.2);
end
end