problem in z transform

18 vues (au cours des 30 derniers jours)
Ridham Katrodiya
Ridham Katrodiya le 15 Fév 2020
not getting true answer
syms n z
F=(2^n)*heaviside(n);
ZT=ztrans(F)
>> ZT = 2/(z - 2) + 1/2

Réponse acceptée

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

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by