Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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);**

Akzeptierte Antwort

Sergey Kasyanov
Sergey Kasyanov am 6 Apr. 2018
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

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by