blob: 6256d04bfbecc84ef4064c7841a9c40c276f2421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 2.13 (c)
//MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM
//Z- transform of u(n-2)
clear;
clc ;
close ;
syms n z;
x =1;
X= (1/(z^2))*symsum (x*(z^(-n)),n ,0, %inf );
//Display the result in command window
disp (X,"Z-transform of u(n-2) is:");
|