summaryrefslogtreecommitdiff
path: root/Working_Examples/293/CH6/EX6.1/eg6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/293/CH6/EX6.1/eg6_1.sce')
-rwxr-xr-xWorking_Examples/293/CH6/EX6.1/eg6_1.sce6
1 files changed, 6 insertions, 0 deletions
diff --git a/Working_Examples/293/CH6/EX6.1/eg6_1.sce b/Working_Examples/293/CH6/EX6.1/eg6_1.sce
new file mode 100755
index 0000000..193b6b7
--- /dev/null
+++ b/Working_Examples/293/CH6/EX6.1/eg6_1.sce
@@ -0,0 +1,6 @@
+function F = laplace(s, T1, T2)
+ //pulse:
+ // f = u(t - T1) - u(t - T2)
+ F = integrate('exp(-s*t)','t',T1,T2); //laplace transform of the pulse
+endfunction
+