How to solve differential equation with MATLAB
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
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
  Torsten
      
      
 2015년 11월 11일
				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.
채택된 답변
추가 답변 (5개)
  Torsten
      
      
 2015년 11월 11일
        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.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!