plotting a system of derivatives

2 views (last 30 days)
weddle32
weddle32 on 1 May 2015
Commented: ankit agrawal on 1 May 2015
I am wanting to visualise the following system of equations, dy/dt=cos(y)*sin(x) and dz/dt=3+(sin(y)*cos(z)) is matlab. Does anyone know what function i should use. Thanks
  1 Comment
ankit agrawal
ankit agrawal on 1 May 2015
You can use rk method ode45 or ode23 to solve above equation. You can write equation like this Y=[y0 z0] Ydot=[cos(Y(1)*sin(x);3+sin(Y(1)*cos(Y(2))];

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!