Solving a first order differential equation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rahal Rodrigo
el 15 de Abr. de 2021
Comentada: Rahal Rodrigo
el 15 de Abr. de 2021
How do you enter a condition in similar syntax to the one below in MATLAB. I am using dsolve with conditions and am having trouble entering a smilar condition into the software. Any advice would be greatly apreciated.
0 comentarios
Respuesta aceptada
Cris LaPierre
el 15 de Abr. de 2021
syms y(t)
Dy = diff(y,t);
cond = Dy(2)==3;
ySol(t) = dsolve(eqn,cond)
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!