-
Notifications
You must be signed in to change notification settings - Fork 0
signal.Autocorrelation.Function.nonPeriodicAutocorrelation
Christian d'Heureuse edited this page Jun 7, 2026
·
2 revisions
dsp-collection / signal/Autocorrelation / nonPeriodicAutocorrelation
function nonPeriodicAutocorrelation(x, normalize): Float64Array;Defined in: signal/Autocorrelation.ts:75
Computes the non-periodic autocorrelation of a sampled signal.
Only the right half side of the symetric autocorrelation result is computed.
This is a simple reference implementation without any optimization.
ArrayLike<number>
The input signal.
boolean
true to divide the computed values by the value for distance 0.
Float64Array
The non-periodic autocorrelation of the input signal.