Filter löschen
Filter löschen

Solving a first order differential equation

3 Ansichten (letzte 30 Tage)
Rahal Rodrigo
Rahal Rodrigo am 15 Apr. 2021
Kommentiert: Rahal Rodrigo am 15 Apr. 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.

Akzeptierte Antwort

Cris LaPierre
Cris LaPierre am 15 Apr. 2021
See this example. I've copied/modified the relevant parts below.
syms y(t)
Dy = diff(y,t);
cond = Dy(2)==3;
ySol(t) = dsolve(eqn,cond)

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by