SignalProcessing
BlackmanWindow
multiply a sample by a Blackman windowing function
Calling Sequence
Parameters
Options
Description
Thread Safety
Examples
Compatibility
BlackmanWindow( A, alpha )
A
-
Array of real or complex numeric values; the signal
alpha
standard, optimal or a numeric value : (optional) parameter for Blackman windowing function
container : Array, predefined Array for holding results
inplace : truefalse, specifies that output should overwrite input
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.
w⁡k=α2+12−0.5⁢cos⁡2⁢π⁢kN−1−α⁢cos⁡4⁢π⁢kN−12
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+cos⁡2⁢πN−1 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.
The SignalProcessing[BlackmanWindow] command is thread-safe as of Maple 17.
For more information on thread safety, see index/threadsafe.
with⁡SignalProcessing:
a≔GenerateUniform⁡10,−1,1
a≔
BlackmanWindow⁡a
BlackmanWindow⁡a,standard
BlackmanWindow⁡a,optimal
c≔Array⁡1..10,datatype=float8,order=C_order:
BlackmanWindow⁡a,container=c
c
a≔GenerateTone⁡100,1,1π,π:
useplotsindisplay⁡Array⁡listplot⁡a,listplot⁡BlackmanWindow⁡a,listplot⁡BlackmanWindow⁡a,'optimal';animate⁡listplot,'BlackmanWindow'⁡a,α,α=−1..1end use
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]
Download Help Document