Effacer les filtres
Effacer les filtres

solving differential equation and assigning value to symfun

3 vues (au cours des 30 derniers jours)
swetha S
swetha S le 23 Jan 2020
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.

Réponse acceptée

Star Strider
Star Strider le 23 Jan 2020
Try this:
t_val = vpasolve(ySol==1,t) % Symbolic Solution

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by