diff options
Diffstat (limited to '215/CH15/EX15.9/ex15_9.sce')
-rwxr-xr-x | 215/CH15/EX15.9/ex15_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/215/CH15/EX15.9/ex15_9.sce b/215/CH15/EX15.9/ex15_9.sce new file mode 100755 index 000000000..a3e04d87b --- /dev/null +++ b/215/CH15/EX15.9/ex15_9.sce @@ -0,0 +1,14 @@ +clc
+//Example 15.9
+//Install Symbolic toolbox
+//Find the inverse Laplace transform
+syms s
+s=%s
+//Let a=1 and b=3
+a=1;b=3;
+V=1/((s+a)*(s+b))
+Vp=pfss (V)
+Vp1=ilaplace(Vp(1))
+Vp2=ilaplace(Vp(2))
+v=Vp1+Vp2
+disp(v,'v(t)=')
\ No newline at end of file |