solving differential equation and assigning value to symfun

조회 수: 3 (최근 30일)
swetha S
swetha S 2020년 1월 23일
답변: Star Strider 2020년 1월 23일
I solved my 1st order differntial equation using the below commands
syms y(t)
ode = diff(y) == t+2y;
cond = y(0) == 1;
ySol(t) = dsolve(ode,cond)
After this I have got my solution. Now my problem is I need to assign ySoln(t)=1 , to convert this equation to algebric one and solve for t.
I dont know how to assign a symfun to 1.

채택된 답변

Star Strider
Star Strider 2020년 1월 23일
Try this:
t_val = vpasolve(ySol==1,t) % Symbolic Solution

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by