summaryrefslogtreecommitdiff
path: root/215/CH14/EX14.5/ex14_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '215/CH14/EX14.5/ex14_5.sce')
-rwxr-xr-x215/CH14/EX14.5/ex14_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/215/CH14/EX14.5/ex14_5.sce b/215/CH14/EX14.5/ex14_5.sce
new file mode 100755
index 000000000..7caf6feda
--- /dev/null
+++ b/215/CH14/EX14.5/ex14_5.sce
@@ -0,0 +1,12 @@
+clc
+//Example 14.5
+//Install Symbolic toolbox
+//Find the Inverse Laplace transform
+syms s
+s=%s;
+P =(7*s+5)/(s^2+s);
+Pp=pfss (P)
+p1=ilaplace (Pp(1))
+p2=ilaplace (Pp(2))
+p=p1+p2
+disp(p,'p(t)='); \ No newline at end of file