summaryrefslogtreecommitdiff
path: root/149/CH21/EX21.10.1/ques10_1.sce
blob: 49fc4ccb065241cbc6981c27aff377fba09a7055 (plain)
1
2
3
4
5
6
7
8
9
10
//ques10(i)
clc
disp('To find the the given integral find the laplace of tsin(t) and put s=2 ');
syms t s m
f=sin(t)*t;

l=laplace(f,t,s)
s=2

disp(eval(l));