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

Online Help

All Products    Maple    MapleSim


SignalProcessing

  

BlackmanWindow

  

multiply a sample by a Blackman windowing function

 

Calling Sequence

Parameters

Options

Description

Thread Safety

Examples

Compatibility

Calling Sequence

BlackmanWindow( A, alpha )

Parameters

A

-

Array of real or complex numeric values; the signal

alpha

-

standard, optimal or a numeric value : (optional) parameter for Blackman windowing function

Options

• 

container : Array, predefined Array for holding results

• 

inplace : truefalse, specifies that output should overwrite input

Description

• 

The BlackmanWindow( A, alpha ) command multiplies the Array A by the Blackman windowing function with parameter alpha and returns the result in an Array having the same length. The length of A must be at least 4.

• 

The Blackman windowing function w is defined as follows for a sample of N elements.

wk=α2+120.5cos2πkN1αcos4πkN12

• 

The default value of the parameter alpha is standard, and in this case, a value of α=−0.16 is assumed. When alpha is optimal, then a value of α=0.51+cos2πN1 is used. The alpha parameter may also take an arbitrary (real) numeric value.

• 

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

• 

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

Examples

withSignalProcessing:

aGenerateUniform10,1,1

0.99586757367491940.40833752941181880.16761088832763580.246858837322246340.432866472071836040.439979858216147270.432901310269353250.48137943311558130.477697063372825750.028839034648290067

(1)

BlackmanWindowa

0.00.0207719801199661750.043243693246004350.155521067513015170.411712229509389740.41847798351851420.27272782546969250.124196135157368580.02430027413360590.0

(2)

BlackmanWindowa,'standard'

0.00.0207719801199661750.043243693246004350.155521067513015170.411712229509389740.41847798351851420.27272782546969250.124196135157368580.02430027413360590.0

(3)

BlackmanWindowa,'optimal'

0.01.058577456104355810-170.0232299301958606530.132726384850208320.4054780267099460.412141332747985640.232754178591408650.066716492827955261.238385663110912910-170.0

(4)

cArray1..10,'datatype'='float'8,'order'='C_order':

BlackmanWindowa,'container'=c

0.00.0207719801199661750.043243693246004350.155521067513015170.411712229509389740.41847798351851420.27272782546969250.124196135157368580.02430027413360590.0

(5)

c

0.00.0207719801199661750.043243693246004350.155521067513015170.411712229509389740.41847798351851420.27272782546969250.124196135157368580.02430027413360590.0

(6)

aGenerateTone100,1,1Pi,Pi:

useplotsindisplayArraylistplota,listplotBlackmanWindowa,listplotBlackmanWindowa,'optimal';animatelistplot,'BlackmanWindow'a,α,α=1..1end use

Compatibility

• 

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

• 

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

See Also

SignalProcessing[BartlettWindow]

SignalProcessing[HammingWindow]

SignalProcessing[HannWindow]

SignalProcessing[KaiserWindow]