problem in z transform

1 view (last 30 days)
Ridham Katrodiya
Ridham Katrodiya on 15 Feb 2020
Answered: Star Strider on 15 Feb 2020
not getting true answer
syms n z
F=(2^n)*heaviside(n);
ZT=ztrans(F)
>> ZT = 2/(z - 2) + 1/2

Accepted Answer

Star Strider
Star Strider on 15 Feb 2020
Use the simplify function:
ZT = simplify(ZT, 'Steps',500);
to get:
ZT =
2/(z - 2)

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!