Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

draw orthogonal trajectories using matlab

1 view (last 30 days)
Brenda Galabe
Brenda Galabe on 12 Dec 2018
Closed: madhan ravi on 13 Dec 2018
equation is
dy/dx = -d*x/e*y
syms y(x)
a=2;
b=3;
c=5;
d= 5;
e = 8;
ode = diff(y,x) == (-d*x)/(e*y);
ysol = vpa(dsolve(ode));
ezplot(ysol(1))
hold on
ezplot(ysol(2))
problem :
plot coming up blank

Answers (0)

This question is closed.

Products


Release

R2015b

Community Treasure Hunt

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

Start Hunting!