Problems defining a polynomial in the z domain
Show older comments
Hello, I am trying to get a inverse Z transform of the following equation:
G(z) = (0.6321*z^-1)/((1-z^-1)*(1-0.3679*z^-1))
using the code
syms z k
F = (0.6321*z^-1)/((1-z^-1)*(1-0.3679*z^-1))
iztrans(F, z, k)
However, geting the following error:
Error: Unexpected MATLAB expression.
What is wrong?
Accepted Answer
More Answers (1)
Walter Roberson
on 1 May 2016
1 vote
0.3679z is not valid syntax. You need to add the multiplication symbol, 0.3679*z
1 Comment
Francisco Araujo
on 2 May 2016
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!