WindowFunctions.Rectangular Method

Returns a rectangular window function of the specified length.

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static WindowFunction Rectangular(
	int length
)

Parameters

length  Int32
The length of the window.

Return Value

WindowFunction
A WindowFunction object that represents a rectangular window of length length, normalized so the largest value is 1.

Exceptions

ArgumentOutOfRangeExceptionlength is less than or equal to zero.

See Also