ztrans - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


MTM

  

ztrans

  

Z-transform

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ztrans(M)

ztrans(M,z)

ztrans(M,n, z)

Parameters

M

-

array or expression

n

-

variable

z

-

variable

Description

• 

F = ztrans(f) is the Z-transform of the scalar f with default independent variable n.  If f is not a function of n, then f is  assumed to be a function of the independent variable returned by findsym(f,1). The default return is a function of z.

• 

If f = f(z), then ztrans returns a function of w.

• 

By definition, F⁡z=∑n=0∞⁡f⁡nzn where the summation above proceeds with respect to z.

• 

ztrans(f,w) makes f a function of the variable w instead of the default z.

• 

ztrans(f,k,w) takes f to be a function of k instead of the default n. The summation is then with respect to w.

• 

The ztrans(M) function computes the element-wise Z-transform of M.  The result, R, is formed as R[i,j] = ztrans(M[i,j], n,z).

Examples

> 

with⁡MTM:

> 

ztrans⁡sin⁡π2⁢n

zz2+1

(1)
> 

ztrans⁡sin⁡π2⁢z

ww2+1

(2)
> 

ztrans⁡sin⁡π2⁢n,s

ss2+1

(3)
> 

ztrans⁡k⁢sin⁡π2⁢n,k,s

sin⁡π⁢n2⁢ss−12

(4)
> 

M≔Matrix⁡sin⁡π2⁢n,k⁢sin⁡π2⁢n:

> 

ztrans⁡M

zz2+1k⁢zz2+1

(5)

See Also

MTM[findsym]

MTM[fourier]

MTM[iztrans]

MTM[laplace]

ztrans