FMINUNC cannot continue help?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to learn how to use fminunc, but it gives the error "Failure in initial objective function evaluation. FMINUNC cannot continue."
Help please?
Note: Updated
for i = 1:modes
params.x0 = [y0 dy0];
params.xp = xspan;
fobj = @(beta)myobj(beta, params);
for j = 1:1000 % begin convergence loop for beta
beta = fminunc(fobj, beta0); % run optimization
end % end convergence loop
end
%%
function [err, T, Y] = myobj(beta)
x0 = params.x0;
xspan = params.xp;
[T,Y] = ode45('ffunc', xspan, x0);
err = abs(Y(end,2) + sqrt(K*L.^2 - beta)*Y(end,1)); % error
end
0 Kommentare
Akzeptierte Antwort
Matt J
am 25 Okt. 2019
Bearbeitet: Matt J
am 25 Okt. 2019
You forgot to pass your params,
fobj = @(beta)myobj(beta,params);
function [err, T, Y] = myobj(beta,params)
x0 = params.x0;
xspan = params.xp;
[T,Y] = ode('ffunc', xspan, x0);
err = abs(Y(end,2) + sqrt(K*L.^2 - beta)*Y(end,1)); % error
end
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Propagation and Channel Models finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!