Padding Enumeration
Enumerates the ways signals may be padded at the boundaries.
Definition
Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |