These YouTube videos illustrate how to combine Matlab and Simulink to solve differential equations.
Solving VERY simple Ordinary Differential Equation (ODE)
dy/dt = -0.5 with y(0) = 100;
Solving a simple ODE
dy/dt = -0.5 y -10 with y(0) = 100;
Solving a second order ODE
d2y/dt2 + 3 dy/dt - 10 y +15 = 0 with dy/dt(0) = 10 and y(0) = 5;
Solving coupled ODEs
dy/dt = -3 z with y(0) = 8 , AND
dz/dt = 10 y with z(0) = 5
Illustrating some additional functionality using the Tutorial 4 case.