Replace a variable in differential equation with 0
조회 수: 4 (최근 30일)
이전 댓글 표시
I want to reduce this equation by having beta = 0. so that the terms having beta get removed.
((Lemda-((SigmaT(t)).*T))-BetaV(t).*T(t))
채택된 답변
Walter Roberson
2021년 6월 13일
syms T(t) SigmaT(t) BetaV(t) Lemda To
ode = diff(T,t) == ((Lemda-((SigmaT(t)).*T))-BetaV(t).*T(t))
cond = T(0) == To;
zerofun(t) = sym(0)
modified_ode = subs(ode, BetaV, zerofun)
Solution = dsolve(modified_ode, cond)
댓글 수: 2
Walter Roberson
2021년 6월 13일
Sorry, I am having difficulty reading the image in places, and some of the pieces I think maybe I can read, do not make sense mathematically.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

