Signal Math.Apply Bartlett 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 Bartlett window to a real-valued vector in place. |
| Apply | Applies a Bartlett window to a complex-valued vector in place. |
| Apply | Applies a Bartlett window to real values in place. |
| Apply | Applies a Bartlett window to complex values in place. |
ApplyBartlettWindowInPlace<T>(Vector<T>)
Applies a Bartlett window to a real-valued vector in place.
public static void ApplyBartlettWindowInPlace<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. |
ApplyBartlettWindowInPlace<T>(Vector<Complex<T>>)
Applies a Bartlett window to a complex-valued vector in place.
public static void ApplyBartlettWindowInPlace<T>(
Vector<Complex<T>> values
)
Parameters
Type Parameters
- T
- The element type (double or float).
Exceptions
| Argument | Thrown when values is null. |
ApplyBartlettWindowInPlace<T>(Span<T>, Int32)
Applies a Bartlett window to real values in place.
public static void ApplyBartlettWindowInPlace<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).
ApplyBartlettWindowInPlace<T>(Span<Complex<T>>, Int32)
Applies a Bartlett window to complex values in place.
public static void ApplyBartlettWindowInPlace<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).