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

Online Help

SignalProcessing

  

GaussianWindow

  

multiply an array of samples by a Gaussian windowing function

 

Calling Sequence

Parameters

Options

Description

Thread Safety

Examples

Compatibility

Calling Sequence

GaussianWindow( A, alpha )

Parameters

A

-

Array of real or complex numeric values; the signal

alpha

-

numeric value greater than 2

Options

• 

container : Array, predefined Array for holding results

• 

inplace : truefalse, specifies that output should overwrite input

Description

• 

The GaussianWindow( A, alpha ) command multiplies the Array A by the Gaussian windowing function, with parameter α, and returns the result in an Array having the same length.

• 

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

wk=ⅇα22kN122

• 

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

• 

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

Examples

withSignalProcessing:

N1024:

aGenerateUniformN,1,1

GaussianWindowa,3.14

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

GaussianWindowArray1..N,fill=1,datatype=float8,order=C_order,5.0,container=c

u`~`logFFTc:

useplotsindisplayArraylistplotℜu,listplotℑuend use

Compatibility

• 

The SignalProcessing[GaussianWindow] command was introduced in Maple 18.

• 

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

See Also

SignalProcessing

 


Download Help Document