blob: 8b6fb660712ee9953c789e28da0a48b6586a5f41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example 4.7
//MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM
clear;
clc ;
close ;
syms n z;
f1=(1/2)^n;
F1= symsum (f1*(z^(-n)),n ,0, %inf );
f2=(1/3)^n;
F2= symsum (f2*(z^(-n)),n ,0,%inf );
//Display the result in command window
F=F1+F2; //linearity property
disp (F,"Z-transform of f(n) is:");
disp('ROC is the Region mod(z) > (1/2) ')
|