You are on page 1of 1

MATLAB Command Window Page 1

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

ans =

(2*(s^5 - 4*s^4 - 3*s^3 + 27*s^2 + 54*s - 162))/(3*s^4*(s - 3)^3)

>> pretty(F)
2 2 8 4
---------- + ---- + ---- + --
3 2 3 4
3 (s - 3) 3 s 3 s s

>> nomor 8

You might also like