KernelAnchor Properties

Properties

Centered Gets a kernel anchor positioned at the center of the kernel (floor(M/2)).
Default Gets the default kernel anchor that adapts based on convolution mode. For SameAsSignal mode, this is Centered; for other modes, this is FirstSample.
FirstSample Gets a kernel anchor positioned at the first sample (index 0, causal).
Index Gets the explicit anchor index.
IsAbsolute Gets a value indicating whether the anchor is at an absolute index.
IsCentered Gets a value indicating whether the anchor is centered (floor(M/2)).
IsDefault Gets a value indicating whether the anchor uses default behavior (adapts to convolution mode).
IsFirstSample Gets a value indicating whether the anchor is at the first sample (index 0).
IsLastSample Gets a value indicating whether the anchor is at the last sample (index M-1).
IsOrigin Gets a value indicating whether the anchor is at a position relative to the center. This is the convention used in
C#
scipy.signal
.
LastSample Gets a kernel anchor positioned at the last sample (index M-1, anti-causal).

See Also