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 = (1/8*t*(sin(t)+t*cos(t))+ 3/8*sin(t));
>> F = laplace(f,t,s);
>> simplify(F)

ans =

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

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

>> nomor 17

You might also like