How to solve this implicit equation in matlab?

답변 (1개)

Alan Stevens
Alan Stevens 2021년 10월 22일
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)
0.4102
disp(fn(x))
6.9389e-17

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

질문:

2021년 10월 22일

답변:

2021년 10월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by