ztrans don't work

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

acer's picture

Step

> ztrans(charfcn[0](t),t,z);
                                       1


> ztrans(Heaviside(t),t,z);
                                       z
                                     -----
                                     z - 1

I'm not sure why it doesn't like Dirac(t).

That was all in Maple 6.

acer

Robert Israel's picture

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.

acer's picture

thanks

Right. Of course. Thanks. So, charfcn[0] it is.

acer

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}