Solve for an implicitly defined variable

조회 수: 2 (최근 30일)
Thomas Ward
Thomas Ward 2018년 4월 20일
답변: Walter Roberson 2018년 4월 20일
How do I use matlab to solve for an implicitly defined variable? For example
x=0.6953*ln(115/(215-x))-100

채택된 답변

Walter Roberson
Walter Roberson 2018년 4월 20일
syms x
vpasolve(x==0.6953*log(115/(215-x))-100)

There is a second solution, which is approximately 215 - -2.02E-195 . However, you cannot round that to 215: if you do round it then you would get a division by 0.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by