Dear forum,
I am working with maple 6. I have type the lines below :
> restart:readlib(ztrans):
> ztrans(Delta(t),t,z);
ztrans(Δ(t), t, z) ( this is the reslut)
> ztrans(Step(n),n,z);
ztrans(Step(n), n, z) ( this is the reslut)
In stead of those answers I expexted the follwing according my trainingmanual.
1 for ztrans(Delta(t),t,z);
AND
z / z-1 for ztrans(Step(n),n,z);
Can some one help me with this.
Regards,
Roberto
Step
> ztrans(charfcn[0](t),t,z); 1 > ztrans(Heaviside(t),t,z); z ----- z - 1I'm not sure why it doesn't like Dirac(t).
That was all in Maple 6.
acer
ztrans of Dirac
ztrans(f(t),t,z) = sum(f(n)/z^n, n=0..infinity)
so if f(n) is undefined or infinite for any nonnegative integer n, the Z transform should be undefined.
Dirac(0) is undefined. The Delta(n) used in the z transform literature is 1 at n=0.
thanks
Right. Of course. Thanks. So, charfcn[0] it is.
acer