You are on page 1of 1

MATLAB Command Window Page 1

>> syms t s
>> f = (1/3*exp(t)*(t^2+3*t+2)+ 4/3*(t+1)^2);
>> F = laplace(f,t,s);
>> simplify(F)

ans =

-(- 6*s^5 + 5*s^4 + 3*s^3 + 4*s^2 - 16*s + 8)/(3*s^3*(s - 1)^3)

>> pretty(ans)
5 4 3 2
- 6 s + 5 s + 3 s + 4 s - 16 s + 8
- --------------------------------------
3 3
3 s (s - 1)

>> nomor 18

You might also like