49T+245e^(-T/5)-545 = 0

조회 수: 1 (최근 30일)
jackery smith
jackery smith 2016년 9월 24일
댓글: Walter Roberson 2016년 9월 24일
i am totally new to matlab. with which func and command could I get the value of T?
sorry for the too much elementary question. Just started to learn D.E.s..
  댓글 수: 2
androidguy
androidguy 2016년 9월 24일
José-Luis
José-Luis 2016년 9월 24일
That's not a differential equation though.

댓글을 달려면 로그인하십시오.

답변 (3개)

José-Luis
José-Luis 2016년 9월 24일
편집: José-Luis 2016년 9월 24일
fun = @(x) 49*x + 245*exp(-x/5) - 545;
result = fzero(fun,0)

Walter Roberson
Walter Roberson 2016년 9월 24일
syms T
solution = solve(49*T+245*exp(-T/5)-545 == 0)
The answer will be in terms of the Lambert W function. If you want to see the decimal equivalent,
double(solution)

yubo liu
yubo liu 2016년 9월 24일
I try the above methods,but why do i get different results,fun = @(x) 49*x + 245*exp(-x/5) - 545; result = fzero(fun,0) the first resule is -6.2180,and the second method syms T solution = solve(49*T+245*exp(-T/5)-545 == 0),the second result is 10.5116 why? hope your answers
  댓글 수: 3
Star Strider
Star Strider 2016년 9월 24일
When in doubt, plot it:
fun = @(x) 49*x + 245*exp(-x/5) - 545;
t = linspace(-15, 25, 500);
figure(1)
plot(t, fun(t))
grid
Walter Roberson
Walter Roberson 2016년 9월 24일
There are, by the way, an infinite number of solutions; two of the solutions are real.

댓글을 달려면 로그인하십시오.

카테고리

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