How can I plot the difference of the solution of two differential equations vs time?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
syms x(t)
ode = diff(x,t) == (((1/x))-1)*(1/sqrt(x));
cond = x(0) == 2;
xSol(t) = dsolve(ode,cond)
syms y(t)
ode = diff(y,t) == (2*((1/y))-1)*(1/sqrt(y));
cond = y(1) == 2;
ySol(t) = dsolve(ode,cond)
t= 0:0.1:10;
fplot(xSol(t)-ySol(t),t)
0 comentarios
Respuestas (1)
Yogesh Khurana
el 16 de Oct. de 2019
Hi,
Difference in the solutions of two differential equations can be obtained by using diff command in MATLAB. Afterwards you can use plot function and provide the arguments properly.
In case of some missing data in some of the timestamps in any of the differential equation’s solution, you can use interpolation.
Documentation link:
You can find some more details in the solution posted in the below link:
Hope this helps!
0 comentarios
Ver también
Categorías
Más información sobre Ordinary Differential Equations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!