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.

 채택된 답변

Cris LaPierre
Cris LaPierre 2021년 4월 15일

1 개 추천

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)

추가 답변 (0개)

카테고리

질문:

2021년 4월 15일

댓글:

2021년 4월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by