diff options
Diffstat (limited to 'Working_Examples/215/CH14/EX14.3/ex14_3.sce')
-rwxr-xr-x | Working_Examples/215/CH14/EX14.3/ex14_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Working_Examples/215/CH14/EX14.3/ex14_3.sce b/Working_Examples/215/CH14/EX14.3/ex14_3.sce new file mode 100755 index 0000000..d5e6adb --- /dev/null +++ b/Working_Examples/215/CH14/EX14.3/ex14_3.sce @@ -0,0 +1,11 @@ +clc
+//Example 14.3
+//Install Symbolic toolbox
+//Find the Inverse Laplace transform
+syms s
+a=7/s
+b=31/(s+17)
+x=ilaplace(a)
+y=ilaplace(b)
+g=x-y
+disp(g,'g(t)=')
\ No newline at end of file |