blob: 0fffdbe95cb49134b37ba4b992247c77b8d67997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example 7.1.1
//Find the laplace transform and Roc of the following signal
clc;
close;
syms t;
a=5;
x=exp(-a*t);
b=6;c=7;
s=b+c*%i;
X=integrate((exp(-(a+s)*t)),'t',0,%inf);
disp(X);
disp(real(s));
disp('Since real(s)>-a,so the integral converges');
|