draw orthogonal trajectories using matlab

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

回答(0 个)

此问题已关闭。

产品

版本

R2015b

关闭:

2018-12-13

Community Treasure Hunt

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

Start Hunting!

Translated by