SignalProcessing
TukeyWindow
multiply an array of samples by a Tukey windowing function
TaperedCosineWindow
multiply an array of samples by a tapered cosine windowing function
Calling Sequence
Parameters
Options
Description
Thread Safety
Examples
Compatibility
TukeyWindow( A, alpha )
TaperedCosineWindow( A, alpha )
A
-
Array of real or complex numeric values; the signal
alpha
real numeric constant
container : Array, predefined Array for holding results
inplace : truefalse, specifies that output should overwrite input
The TukeyWindow( A, alpha ) command multiplies the Array A by the Tukey windowing function, with parameter α, and returns the result in an Array having the same length.
The command TaperedCosineWindow( A, alpha ) is provided as an alias.
The Tukey windowing function w⁡k with parameter α is defined as follows for a sample with N points.
w⁡k=12−cos⁡2⁢π⁢kα⁢N2k<α⁢N212−cos⁡2⁢πα−2⁢π⁢kα⁢N2N−12⁢α⁢N<k1otherwise
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[TukeyWindow] and SignalProcessing[TaperedCosineWindow] commands are thread-safe as of Maple 18.
For more information on thread safety, see index/threadsafe.
with⁡SignalProcessing:
N≔1024:
a≔GenerateUniform⁡N,−1,1
TukeyWindow⁡a,1.23
c≔Array⁡1..N,datatype=float8,order=C_order:
TukeyWindow⁡Array⁡1..N,fill=1,datatype=float8,order=C_order,0.72,container=c
u≔`~`log⁡FFT⁡c:
useplotsindisplay⁡Array⁡listplot⁡ℜ⁡u,listplot⁡ℑ⁡uend use
The SignalProcessing[TukeyWindow] and SignalProcessing[TaperedCosineWindow] commands were introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
Download Help Document