diff options
Diffstat (limited to '52/CH2/EX2.53.b/Example2_53_b.sce')
-rwxr-xr-x | 52/CH2/EX2.53.b/Example2_53_b.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/52/CH2/EX2.53.b/Example2_53_b.sce b/52/CH2/EX2.53.b/Example2_53_b.sce new file mode 100755 index 000000000..0fede7b16 --- /dev/null +++ b/52/CH2/EX2.53.b/Example2_53_b.sce @@ -0,0 +1,8 @@ +//Example 2.53 (b)
+//MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM
+//Z transform of delta(n)
+clc;
+syms n z;
+x=1;
+X=symsum(x*z^(-n),n,0,0);
+disp(X,'X(z)=');
\ No newline at end of file |