diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /842/CH9/EX9.7/Example9_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '842/CH9/EX9.7/Example9_7.sce')
-rwxr-xr-x | 842/CH9/EX9.7/Example9_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/842/CH9/EX9.7/Example9_7.sce b/842/CH9/EX9.7/Example9_7.sce new file mode 100755 index 000000000..9abac173f --- /dev/null +++ b/842/CH9/EX9.7/Example9_7.sce @@ -0,0 +1,10 @@ +//clear//
+//Example9.7
+//Lapalce Transform x(t) = exp(-b.abs(t)).u(t), 0<t<T
+//x(t) = exp(-bt).u(t)+exp(bt).u(-t)
+syms t s;
+b = 3;
+y = laplace('%e^(-b*t)-%e^(b*t)',t,s);
+disp(y)
+//Result
+// [1/(s+b)]-[1/(s-b)]
|