How to solve differential equation with MATLAB
Afficher commentaires plus anciens
Hi,
I have a problem related to solving differential equation. The equation is:
(3/2)lnX + 3886/x = 19
I can not solve this equation. I must find 'x' value..
How can I solve this with Matlab?
Thanks for your help.
1 commentaire
Torsten
le 11 Nov 2015
X and x are the same ?
Why is your problem related to solving a differential equation ? The equation you wrote is an algebraic equation.
Best wishes
Torsten.
Réponse acceptée
Plus de réponses (5)
nancy
le 11 Nov 2015
0 votes
Torsten
le 11 Nov 2015
Does this work ?
syms x
eqn = 1.5*log(x)+3886/x-19 == 0;
sol = solve(eqn,x);
The result should be some expression containing the Lambert-W-function.
Best wishes
Torsten.
nancy
le 12 Nov 2015
0 votes
nancy
le 13 Nov 2015
0 votes
Catégories
En savoir plus sur Mathematics 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!