ire = fsolve(@(re) Pgls(P,BV0,FROE,B,re),re0);
is their a way to force fsolve to return a positive ire?

 Respuesta aceptada

Torsten
Torsten el 23 de Jun. de 2016

0 votos

Insert re^2 instead of re in your equation. When fsolve has finished, take the square root of the value returned.
Best wishes
Torsten.

Más respuestas (1)

Matt J
Matt J el 23 de Jun. de 2016
Editada: Matt J el 23 de Jun. de 2016

0 votos

Instead of fsolve, use lsqnonlin, which lets you put bounds on the solution,
ire = lsqnonlin(@(re) Pgls(P,BV0,FROE,B,re),re0,0);

Etiquetas

Preguntada:

el 23 de Jun. de 2016

Editada:

el 23 de Jun. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by