Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

MATLAB Command Window Page 1

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

ans =

4/(5*(s + 1)^3) + 40/s^3 + 48/s^4 + 96/(5*s^5)

>> pretty(ans)
4 40 48 96
---------- + -- + -- + ----
3 3 4 5
5 (s + 1) s s 5 s

>> nomor 21

You might also like