fminsearch returns complex numbers as a result
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Malgorzata Wieteska
el 28 de Mayo de 2021
Comentada: Malgorzata Wieteska
el 28 de Mayo de 2021
Hello,
I have system of ODE, which I've optimised using fminsearch. Unfortunately, the return number while used to obtain the numerical solution returns solution with imaginary part equal to zero. This is a problem as I want to use MatCont to do bifurcation. Is there a way to make sure that found parameters will return only real values? I've tried using command:
if any(~isreal(dxdt))
keyboard
end.
Unfortunately, while incorporating these few lines into my ODE function I'm getting only lines as the solution. Parameters which I've found with fminsearch produce harmonic behaviour of the solutions as expected. Is there any lines of code which I can add or other solver, which would fix this problem?
Thank you in advance.
3 comentarios
Torsten
el 28 de Mayo de 2021
You write that the returned solution has imaginary part, but it is equal to zero. Then why not convert the imaginary number into real by transferring only the real part to MatCont ?
Respuestas (1)
Jan
el 28 de Mayo de 2021
If you are sure, that only the real part of the result matters, what about cropping the imaginary part?
finalY = real(y(end, :))
3 comentarios
Jan
el 28 de Mayo de 2021
So maybe your code contains a typo which causes the imaginary solution. Matlab does not do this without a reason. So insert a check in your code and let the debugger stop to examine, what's going on:
function dy = YourFcn(t, y)
...
if ~isreal(dy)
disp('imaginary value') % <-- set a breakpoint here
end
end
Ver también
Categorías
Más información sobre Ordinary Differential Equations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!