Forcing fsolve to be positive
Afficher commentaires plus anciens
ire = fsolve(@(re) Pgls(P,BV0,FROE,B,re),re0);
is their a way to force fsolve to return a positive ire?
Réponse acceptée
Plus de réponses (1)
Instead of fsolve, use lsqnonlin, which lets you put bounds on the solution,
ire = lsqnonlin(@(re) Pgls(P,BV0,FROE,B,re),re0,0);
Catégories
En savoir plus sur Assembly dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!