How to solve this implicit equation in matlab?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ln [(0.77x-0.77)/(x-0.77)] - (0.23x)/(1-x)-0.0729=0
0 commentaires
Réponses (1)
Alan Stevens
le 22 Oct 2021
Good idea to plot a graph first, to see roughly where the root lies. Then use fzero. For example::
fn = @(x)log((0.77*x-0.77)./(x-0.77)) - (0.23*x)./(1-x)-0.0729;
x0 = 0.1;
x = fzero(fn,x0);
disp(x)
disp(fn(x))
0 commentaires
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!