Enum DownsamplingMethod
Specifies the downsampling method used to decimate digital signals.
public enum DownsamplingMethod
Fields
None = 0No preprocessing will be used before decimating the signal. The downsampled signal will keep only every Mth sample, where M is the integral factor in Factor.
LowPass = 1A low-pass filter will be applied to the signal before downsampling.
Dithering = 2The downsampled signal will keep a random sample out of every M samples, where M is the integral factor in Factor.
Sum = 3The downsampled signal will keep the sum of every M samples, where M is the integral factor in Factor.
Avg = 4The downsampled signal will keep the average of every M samples, where M is the integral factor in Factor.
Max = 5The downsampled signal will keep the largest of every M samples, where M is the integral factor in Factor.
Min = 6The downsampled signal will keep the smallest of every M samples, where M is the integral factor in Factor.