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#
public enum Padding

Members

None0 The signal is not padded.
Constant1 The signal is padded by the specified constant value.
Mirror2 The signal is mirrored so that values around the boundary points are mirrored.
Nearest3 The signal is padded by the first value at the lower boundary and the last value at the upper boundary.
Periodic4 The signal is treated as periodic.

See Also