diff options
Diffstat (limited to '716/CH7/EX7.10.III')
-rwxr-xr-x | 716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce b/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce new file mode 100755 index 000000000..32810234c --- /dev/null +++ b/716/CH7/EX7.10.III/7_12_ExerciseIII7_10.sce @@ -0,0 +1,10 @@ +//determine z transform of x(n)={0.5,-0.25,1}
+clc;
+clear;
+x={0.5,-0.25,1};
+z=poly(0,"z");
+X=0;
+for n=1:1:3
+ X=X+x(n)*(z^(-1*(n-1)));
+end
+disp(X,"Z tranform=");
\ No newline at end of file |