how to solve an equation iteratively?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Randy Chen
il 24 Feb 2021
Commentato: Randy Chen
il 24 Feb 2021
I need to solve the following equation and get a real number:
Below are my codes. When doing this, the solution returned are all complex values. How can I iteratively solve this equation such that x can be a real number? I already know the correct solution is about 7.78016, but I need to reproduce the procedure
syms x
eqn1 =200 == x*(1-(0.4*(x-1))/sqrt(2.8*2.4*x+0.4))^(-2.8/0.4);
sol = solve(eqn1,x)
0 Commenti
Risposta accettata
Walter Roberson
il 24 Feb 2021
syms x
eqn1 =200 == x*(1-(0.4*(x-1))/sqrt(2.8*2.4*x+0.4))^(-2.8/0.4);
sol = solve(eqn1, x);
sol = sol(imag(sol) == 0)
vpa(sol)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Ordinary Differential Equations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!