Padding Enumeration
Enumerates the ways signals may be padded at the boundaries.
Definition
Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum Padding
Members
None | 0 | The signal is not padded. |
Constant | 1 | The signal is padded by the specified constant value. |
Mirror | 2 | The signal is mirrored so that values around the boundary points are mirrored. |
Nearest | 3 | The signal is padded by the first value at the lower boundary and the last value at the upper boundary. |
Periodic | 4 | The signal is treated as periodic. |