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

Online Help

SignalProcessing

  

HannWindow

  

multiply an array of samples by a Hann windowing function

 

Calling Sequence

Parameters

Options

Description

Thread Safety

Examples

Compatibility

Calling Sequence

HannWindow(A)

Parameters

A

-

Array of real or complex numeric values; the signal

Options

• 

container : Array, predefined Array for holding results

• 

inplace : truefalse, specifies that output should overwrite input

Description

• 

The HannWindow(A) command multiplies the Array A by a Hann windowing function and returns the result in an Array having the same length. The length of A must be at least 3.

• 

The Hann windowing function w is defined as follows for a sample with N points.

wk=0.50.5cos2πkN1

• 

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

• 

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[HannWindow] command is thread-safe as of Maple 17.

• 

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

Examples

withSignalProcessing:

aGenerateUniform10,1,1

a0.9958675736749190.4083375294118190.167610888327636−0.2468588373222460.432866472071836−0.4399798582161470.4329013102693530.481379433115581−0.4776970633728260.0288390346482901

(1)

HannWindowa

0.0.04776641704448140.0692527815062032−0.1851441279916850.419813950831685−0.4267128421381460.3246759827020150.198894385894360−0.05587994124090910.

(2)

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

HannWindowa,container=c

0.0.04776641704448140.0692527815062032−0.1851441279916850.419813950831685−0.4267128421381460.3246759827020150.198894385894360−0.05587994124090910.

(3)

c

0.0.04776641704448140.0692527815062032−0.1851441279916850.419813950831685−0.4267128421381460.3246759827020150.198894385894360−0.05587994124090910.

(4)

aGenerateTone100,1,1π,π:

useplotsindisplayArraylistplota,listplotHannWindowaend use



Compatibility

• 

The SignalProcessing[HannWindow] 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[KaiserWindow]

 


Download Help Document