-
Notifications
You must be signed in to change notification settings - Fork 0
signal.Autocorrelation.Function.findNonPeriodicAutocorrelationMaximum
Christian d'Heureuse edited this page Jun 7, 2026
·
2 revisions
dsp-collection / signal/Autocorrelation / findNonPeriodicAutocorrelationMaximum
function findNonPeriodicAutocorrelationMaximum(
x,
minDistance,
maxDistance,
fixedOverlapWidth): number;Defined in: signal/Autocorrelation.ts:49
Finds the distance value with the highest autocorrelation.
ArrayLike<number>
The input signal.
number
The minimum distance.
number
The maximum distance.
boolean
true to use the fixed overlap width x.length - maxDistance.
number
The distance with the highest autocorrelation within minDistance and maxDistance.