summaryrefslogtreecommitdiff
path: root/692/CH6/EX6.5/P6_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '692/CH6/EX6.5/P6_5.sce')
-rwxr-xr-x692/CH6/EX6.5/P6_5.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/692/CH6/EX6.5/P6_5.sce b/692/CH6/EX6.5/P6_5.sce
new file mode 100755
index 000000000..a3a1bc850
--- /dev/null
+++ b/692/CH6/EX6.5/P6_5.sce
@@ -0,0 +1,10 @@
+//EXAMPLE 6.9
+//Z-Transform of causal sequence
+clc;
+clear;
+//z=%z;
+syms n a z M N;
+x = a^n;
+X = nusum(x*(1/z)^n,n,-M,N);
+limit(X);
+disp(X,' X = '); \ No newline at end of file