KernelProcessor<T>.Mode Property

Gets the output mode that determines the size and alignment of the convolution/correlation result.

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public ConvolutionMode Mode { get; }

Property Value

ConvolutionMode
One of the ConvolutionMode enumeration values.

Remarks

  • FullLength: Returns all values where signal and kernel overlap (length = signalLength + kernelLength - 1)
  • SameAsSignal: Returns the central portion with the same length as the signal
  • NoPadding: Returns only values where the kernel fully overlaps the signal

See Also