Solving first order differential equation

조회 수: 1 (최근 30일)
Rahal Rodrigo
Rahal Rodrigo 2021년 4월 12일
편집: Abhishek Gupta 2021년 4월 15일
How is it possible to solve the following differential eqiuation using syms and dsolve? I'm quite confused on how to solve dx/dx on matlab. The condition is x(0)=4. Any help would be greatly appreciated.
  댓글 수: 2
James Tursa
James Tursa 2021년 4월 12일
편집: James Tursa 2021년 4월 12일
Double check your assignment. That is probably supposed to be dx/dt, not dx/dx.
Rahal Rodrigo
Rahal Rodrigo 2021년 4월 12일
Thanks for your reply and your suggestion. The assignment says dx/dx (only 1 task has it like so), so I'll assume its a typo and take it as dx/dt. Thanks again.

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

답변 (1개)

Abhishek Gupta
Abhishek Gupta 2021년 4월 15일
편집: Abhishek Gupta 2021년 4월 15일
Hi,
You can solve the given ODE as follows: -
syms x(t);
ode = 2*diff(x,t) + 7*x == t;
cond = x(0) == 4;
xSol(t) = dsolve(ode,cond);
For more details, check out the following documentation link: -

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by