problem in z transform

3 visualizaciones (últimos 30 días)
Ridham Katrodiya
Ridham Katrodiya el 15 de Feb. de 2020
Respondida: Star Strider el 15 de Feb. de 2020
not getting true answer
syms n z
F=(2^n)*heaviside(n);
ZT=ztrans(F)
>> ZT = 2/(z - 2) + 1/2

Respuesta aceptada

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

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by