SignalMath.ApplyFlatTopWindowInPlace Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0

Overload List

ApplyFlatTopWindowInPlace<T>(Vector<T>) Applies a flat-top window to a real-valued vector in place.
ApplyFlatTopWindowInPlace<T>(Vector<Complex<T>>) Applies a flat-top window to a complex-valued vector in place.
ApplyFlatTopWindowInPlace<T>(Span<T>, Int32) Applies a flat-top window to real values in place.
ApplyFlatTopWindowInPlace<T>(Span<Complex<T>>, Int32) Applies a flat-top window to complex values in place.

ApplyFlatTopWindowInPlace<T>(Vector<T>)

Applies a flat-top window to a real-valued vector in place.
C#
public static void ApplyFlatTopWindowInPlace<T>(
	Vector<T> values
)

Parameters

values  Vector<T>
The vector to window in place.

Type Parameters

T
The element type (double or float).

Exceptions

ArgumentNullExceptionThrown when values is null.

ApplyFlatTopWindowInPlace<T>(Vector<Complex<T>>)

Applies a flat-top window to a complex-valued vector in place.
C#
public static void ApplyFlatTopWindowInPlace<T>(
	Vector<Complex<T>> values
)

Parameters

values  Vector<Complex<T>>
The vector to window in place.

Type Parameters

T
The element type (double or float).

Exceptions

ArgumentNullExceptionThrown when values is null.

ApplyFlatTopWindowInPlace<T>(Span<T>, Int32)

Applies a flat-top window to real values in place.
C#
public static void ApplyFlatTopWindowInPlace<T>(
	Span<T> values,
	int valuesStride
)

Parameters

values  Span<T>
The span of values to window.
valuesStride  Int32
The stride between successive elements in values.

Type Parameters

T
The element type (double or float).

ApplyFlatTopWindowInPlace<T>(Span<Complex<T>>, Int32)

Applies a flat-top window to complex values in place.
C#
public static void ApplyFlatTopWindowInPlace<T>(
	Span<Complex<T>> values,
	int valuesStride
)

Parameters

values  Span<Complex<T>>
The span of complex values to window.
valuesStride  Int32
The stride between successive elements in values.

Type Parameters

T
The element type (double or float).

See Also