You are on page 1of 1

MATLAB Command Window Page 1

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

ans =

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

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

>> nomor 15

You might also like