summaryrefslogtreecommitdiff
path: root/Working_Examples/215/CH14/EX14.4/ex14_4.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/215/CH14/EX14.4/ex14_4.sce')
-rwxr-xr-xWorking_Examples/215/CH14/EX14.4/ex14_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/Working_Examples/215/CH14/EX14.4/ex14_4.sce b/Working_Examples/215/CH14/EX14.4/ex14_4.sce
new file mode 100755
index 0000000..40aa3c0
--- /dev/null
+++ b/Working_Examples/215/CH14/EX14.4/ex14_4.sce
@@ -0,0 +1,12 @@
+clc
+//Example 14.4
+//Install Symbolic toolbox
+//Find the Inverse Laplace transform
+syms s t
+a=2
+b=4/s
+x=ilaplace(b)
+//Inverse laplace transform of a constant is
+disp('inverse laplace(2)=2*delta(t)')
+disp('Answer is')
+disp(x+'2*delta(t)')