WindowFunctions.Nuttall Method

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Nuttall(Int32) Returns a symmetric Blackman-Nuttall window of the specified length.
Nuttall(Int32, WindowSampling) Returns a Blackman-Nuttall window of the specified length and symmetry.

Nuttall(Int32)

Returns a symmetric Blackman-Nuttall window of the specified length.
C#
public static WindowFunction Nuttall(
	int length
)

Parameters

length  Int32
The length of the window.

Return Value

WindowFunction
A WindowFunction that represents a Blackman-Nuttall window with a length of length, normalized so the largest value is 1.

Remarks

If the window length is even, the maximum value of 1 may not appear.

Exceptions

ArgumentOutOfRangeExceptionlength is less than or equal to zero.

Nuttall(Int32, WindowSampling)

Returns a Blackman-Nuttall window of the specified length and symmetry.
C#
public static WindowFunction Nuttall(
	int length,
	WindowSampling sampling
)

Parameters

length  Int32
The length of the window.
sampling  WindowSampling
A WindowSampling value that indicates whether the filter is symmetrical or periodic.

Return Value

WindowFunction
A WindowFunction that represents a Blackman-Nuttall window with a length of length, normalized so the largest value is 1.

Remarks

If the window is symmetrical and the length is even, the maximum value of 1 may not appear.

Exceptions

ArgumentOutOfRangeExceptionlength is less than or equal to zero.

See Also