Click or drag to resize

DiscreteWaveletTransformWaveletMode Enumeration

Method for padding the signal edges for improved DWT accuracy near signal edges.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public enum WaveletMode
Members
Member nameValueDescription
ZeroPadding0 Pads the signal edges with zeros: [... 0 0 | x1 x2 ... xn | 0 0 ...]
ConstantPadding1 Pads the signal edges with the first and last signal values: [... x1 x1 | x1 x2 ... xn | xn xn ...]
SymmeticPadding2 Pads the signal edges with the reflection of the mirrored signal: [... x2 x1 | x1 x2 ... xn | xn xn-1 ...]
PeriodicPadding3 Pads the signal edges as though it's a periodic signal: [... xn-1 xn | x1 x2 ... xn | x1 x2 ...]
See Also