diff options
Diffstat (limited to '2294/CH7/EX7.1.1/EX7_1_1.sce')
-rwxr-xr-x | 2294/CH7/EX7.1.1/EX7_1_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2294/CH7/EX7.1.1/EX7_1_1.sce b/2294/CH7/EX7.1.1/EX7_1_1.sce new file mode 100755 index 000000000..0fffdbe95 --- /dev/null +++ b/2294/CH7/EX7.1.1/EX7_1_1.sce @@ -0,0 +1,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');
+
|