You are on page 1of 1

MATLAB Command Window Page 1

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

ans =

(s + 2)/(5*((s + 2)^2 + 9)) + 3/(5*(s - 2)) + 3/(5*((s + 2)^2 + 9))

>> pretty(F)
s + 2 3 3
---------------- + --------- + ----------------
2 5 (s - 2) 2
5 ((s + 2) + 9) 5 ((s + 2) + 9)

>> nomor 7

You might also like