summaryrefslogtreecommitdiff
path: root/162/CH4/EX4.8/example48.sce
blob: 09a7463ec8c243698425729921ddbeb05a5c8f81 (plain)
1
2
3
4
5
6
7
8
9
10
//Example 4.8
//Laplace transform of x(t)=%e^(3t)u(-t)+%e^(t)u(t)
clc;
syms t;
x1=%e^(3*t);
x2=%e^t;
X1=laplace(x1);
X2=laplace(x2);
X=X2-X1;//since x1 is form -%inf to 0
disp(X);