KaiserWindow - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

SignalProcessing

  

KaiserWindow

  

multiply an array of samples by a Kaiser windowing function

 

Calling Sequence

Parameters

Options

Description

Thread Safety

Examples

Compatibility

Calling Sequence

KaiserWindow(A, alpha)

Parameters

A

-

Array of real or complex numeric values; the signal

alpha

-

numeric parameter for Kaiser windowing function

Options

• 

container : Array, predefined Array for holding results

• 

inplace : truefalse, specifies that output should overwrite input

Description

• 

The KaiserWindow(A, alpha) command multiplies the Array A by the Kaiser windowing function with parameter alpha and returns the result in a Array having the same length. The length of A must be at least 1.

• 

The Kaiser windowing function w with parameter α is defined as follows for a sample with N points.

wk=I0αN2122kN2+122I0αN12

where I0 is a modified Bessel function of the first kind (see BesselI).

• 

For an Array with complex values, the real and imaginary parts are multiplied by the same windowing function.

• 

Before the code performing the computation runs, A is converted to datatype float[8] or complex[8] if it does not have one of those datatypes already. For this reason, it is most efficient if A has one of these datatypes beforehand. This does not apply if inplace is true.

• 

If the container=C option is provided, then the results are put into C and C is returned. With this option, no additional memory is allocated to store the result. The container must be an Array of the same size and datatype as A.

• 

If the inplace or inplace=true option is provided, then A is overwritten with the results. In this case, the container option is ignored.

Thread Safety

• 

The SignalProcessing[KaiserWindow] command is thread-safe as of Maple 17.

• 

For more information on thread safety, see index/threadsafe.

Examples

withSignalProcessing:

aGenerateUniform10,1,1

a

(1)

KaiserWindowa,0

(2)

KaiserWindowa,0.23

(3)

KaiserWindowa,4.2

(4)

cArray1..10,datatype=float8,order=C_order:

KaiserWindowa,0.03,container=c

(5)

c

(6)

aGenerateTone100,1,1π,π:

useplotsindisplayArraylistplota,listplotKaiserWindowa,0.2;animatelistplot,'KaiserWindow'a,α,α=1..1end use

Compatibility

• 

The SignalProcessing[KaiserWindow] command was introduced in Maple 17.

• 

For more information on Maple 17 changes, see Updates in Maple 17.

See Also

SignalProcessing[BartlettWindow]

SignalProcessing[BlackmanWindow]

SignalProcessing[HammingWindow]

SignalProcessing[HannWindow]

 


Download Help Document