solving differential equation and assigning value to symfun

2 次查看(过去 30 天)
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