diff options
Diffstat (limited to '149/CH21/EX21.10.1/ques10_1.sce')
-rwxr-xr-x | 149/CH21/EX21.10.1/ques10_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/149/CH21/EX21.10.1/ques10_1.sce b/149/CH21/EX21.10.1/ques10_1.sce new file mode 100755 index 000000000..49fc4ccb0 --- /dev/null +++ b/149/CH21/EX21.10.1/ques10_1.sce @@ -0,0 +1,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));
|