problem in z transform

1 次查看(过去 30 天)
not getting true answer
syms n z
F=(2^n)*heaviside(n);
ZT=ztrans(F)
>> ZT = 2/(z - 2) + 1/2

采纳的回答

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

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by