Here are the steps to solve this ODE problem:
1. Define the ODE function:
function dydt = odefun(t,y)
dydt = -t.*y/10;
end
2. Solve the ODE:
[t,y] = ode45(@odefun,[0 10],10);
3. Plot the result:
plot(t,y)
xlabel('t')
ylabel('y(t)')
This uses ode45 to solve the ODE dy/dt = -t*y/10 on the interval [0,10] with initial condition y(0)=10.