GA is not working...Function i have written separately calling in main program but not worked??

1 次查看(过去 30 天)
xdata =[ 1 2 3 4 5 6] ; ydata=(1./(xdata.^2+2*xdata+4)); FitnessFunction = @simple_fitness; numberOfVariables = 3; x =ga(@genefun,numberOfVariables) * function y = simple_fitness(x,xdata,ydata) y = @(x) sum((x(1)./(x(2).*xdata.^1.9+x(3).*xdata.^0.9+1) - ydata).^2);**

采纳的回答

Sergey Kasyanov
Sergey Kasyanov 2018-4-6
There are two version of code which are working but do not converge.
First:
xdata =[ 1 2 3 4 5 6] ;
ydata=(1./(xdata.^2+2*xdata+4));
FitnessFunction = @(x) sum((x(1)./(x(2).*xdata.^1.9+x(3).*xdata.^0.9+1)-ydata).^2);
numberOfVariables = 3;
x =ga(FitnessFunction,numberOfVariables)
Second:
xdata =[ 1 2 3 4 5 6] ;
ydata=(1./(xdata.^2+2*xdata+4));
numberOfVariables = 3;
x =ga(FitnessFunction,numberOfVariables)
%in separate file
function y=simple_fitness(xdata,ydata)
y=@(x) sum((x(1)./(x(2).*xdata.^1.9+x(3).*xdata.^0.9+1)-ydata).^2)
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Language Fundamentals 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by