diff options
Diffstat (limited to '692/CH6/EX6.3/P6_3.sce')
-rwxr-xr-x | 692/CH6/EX6.3/P6_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/692/CH6/EX6.3/P6_3.sce b/692/CH6/EX6.3/P6_3.sce new file mode 100755 index 000000000..9667cb9dc --- /dev/null +++ b/692/CH6/EX6.3/P6_3.sce @@ -0,0 +1,9 @@ +//EXAMPLE 6.3 +//Z-Transform +clc; +clear; +syms n a z M N; +x = a^n; +X = nusum(x*(1/z)^n,n,M,N-1); +limit(X); +disp(X,' X = '); |