Signal Math.Apply Blackman Harris Window In Place Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
Overload List
| Apply | Applies a Blackman-Harris window to a real-valued vector in place. |
| Apply | Applies a Blackman-Harris window to a complex-valued vector in place. |
| Apply | Applies a Blackman-Harris window to real values in place. |
| Apply | Applies a Blackman-Harris window to complex values in place. |
ApplyBlackmanHarrisWindowInPlace<T>(Vector<T>)
Applies a Blackman-Harris window to a real-valued vector in place.
public static void ApplyBlackmanHarrisWindowInPlace<T>(
Vector<T> values
)
Parameters
- values Vector<T>
- The vector to window in place.
Type Parameters
- T
- The element type (double or float).
Exceptions
| Argument | Thrown when values is null. |
ApplyBlackmanHarrisWindowInPlace<T>(Vector<Complex<T>>)
Applies a Blackman-Harris window to a complex-valued vector in place.
public static void ApplyBlackmanHarrisWindowInPlace<T>(
Vector<Complex<T>> values
)
Parameters
Type Parameters
- T
- The element type (double or float).
Exceptions
| Argument | Thrown when values is null. |
ApplyBlackmanHarrisWindowInPlace<T>(Span<T>, Int32)
Applies a Blackman-Harris window to real values in place.
public static void ApplyBlackmanHarrisWindowInPlace<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).
ApplyBlackmanHarrisWindowInPlace<T>(Span<Complex<T>>, Int32)
Applies a Blackman-Harris window to complex values in place.
public static void ApplyBlackmanHarrisWindowInPlace<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).