Constructor | Description |
Full Usage:
GaussianWindow(count, periodic)
Parameters:
int
periodic : bool
|
|
Full Usage:
GaussianWindow(count, periodic, alpha)
Parameters:
int
periodic : bool
alpha : float
|
|
Static member | Description |
Full Usage:
GaussianWindow.AsDoubleArray(count, periodic)
Parameters:
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.
|
Full Usage:
GaussianWindow.AsROVector(count, periodic)
Parameters:
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.
|
Full Usage:
GaussianWindow.AsVector(count, periodic)
Parameters:
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.
|