GaussianWindow Type

Constructors

Constructor Description

GaussianWindow(count, periodic)

Full Usage: GaussianWindow(count, periodic)

Parameters:
    count : int
    periodic : bool

count : int
periodic : bool

GaussianWindow(count, periodic, alpha)

Full Usage: GaussianWindow(count, periodic, alpha)

Parameters:
    count : int
    periodic : bool
    alpha : float

count : int
periodic : bool
alpha : float

Static members

Static member Description

GaussianWindow.AsDoubleArray(count, periodic)

Full Usage: GaussianWindow.AsDoubleArray(count, periodic)

Parameters:
    count : int - Length of the window.
    periodic : bool - Periodic conditions, see remarks in the base class.

Returns: float[] The window as array of doubles.

Returns the window as an array of doubles.

count : int

Length of the window.

periodic : bool

Periodic conditions, see remarks in the base class.

Returns: float[]

The window as array of doubles.

GaussianWindow.AsROVector(count, periodic)

Full Usage: GaussianWindow.AsROVector(count, periodic)

Parameters:
    count : int - Length of the window.
    periodic : bool - Periodic conditions, see remarks in the base class.

Returns: IROVector<float> The window as read only vector.

Returns the window as an read only vector.

count : int

Length of the window.

periodic : bool

Periodic conditions, see remarks in the base class.

Returns: IROVector<float>

The window as read only vector.

GaussianWindow.AsVector(count, periodic)

Full Usage: GaussianWindow.AsVector(count, periodic)

Parameters:
    count : int - Length of the window.
    periodic : bool - Periodic conditions, see remarks in the base class.

Returns: IVector<float> The window as writeable vector.

Returns the window as writeable vector.

count : int

Length of the window.

periodic : bool

Periodic conditions, see remarks in the base class.

Returns: IVector<float>

The window as writeable vector.