summaryrefslogtreecommitdiff
path: root/149/CH21/EX21.9.2/ques9_2.sce
blob: a325e3b41c10e8f485542aae84b1d4d42ef468a3 (plain)
1
2
3
4
5
6
7
8
//ques9
clc
disp('To find the laplace of given function in t ');
syms t s a b
f=(cos(a*t)-cos(b*t))/t;

l=laplace(f,t,s)
disp(l);