Hello Everyone, I am new to MatLab, and looking for some help.
I have a code where I have 3600 time steps.
I am calculating change in mass of a rocket every step which is assumed to be constant (5000kg/s)
with this bit of a code 
for n=2:length(t)
    if M(n-1) >= mass_r;
        M(n)=M(n-1)-dm*dt;
    else
        M(n)=mass_r-1;
    end
end
I would like someone to help me to implement this equation in MatLab form
 I tried using an explicit method but alot of errors just rainfalls on me. 
Would appreciate any help.