summaryrefslogtreecommitdiff
path: root/215/CH14/EX14.11/ex14_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '215/CH14/EX14.11/ex14_11.sce')
-rwxr-xr-x215/CH14/EX14.11/ex14_11.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/215/CH14/EX14.11/ex14_11.sce b/215/CH14/EX14.11/ex14_11.sce
new file mode 100755
index 000000000..566e19f1a
--- /dev/null
+++ b/215/CH14/EX14.11/ex14_11.sce
@@ -0,0 +1,14 @@
+clc
+//Example 14.11
+//Install Symbolic toolbox
+//Calculate f(inf)
+syms s t ;
+disp('Given function is f(t)=1-exp(-a*t)')
+u=laplace(1)
+v=laplace(exp(-2*t))
+F=u-v
+x=s*F
+//From final value theorem
+y=limit(x,s,0)
+disp(y,'f(inf)=')
+