You are on page 1of 1

MATLAB Command Window Page 1

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

ans =

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

>> pretty(F)
/ s 1 \
| - + - | 4
4 10 \ 2 2 /
---------- + ---------- + -----------
3 3 2
7 (s - 1) 7 (s + 1) 7 (s - 1)

>> nomor 23

You might also like