summaryrefslogtreecommitdiff
path: root/269/CH7/EX7.3/example3.sce
blob: 8071dfa458d369d05422610edee6e3f7b93b1252 (plain)
1
2
3
4
5
6
7
Syms t s
disp('f1(t)=coswt ,  f2(t)=sinwt')
disp('laplace of f1(t) and f2(t) are')
y=laplace('cos(w*t)',t,s)
z=laplace('sin(w*t)',t,s)
disp(y)
disp(z)