Sound: Autocorrelate...

A command available in the Periodicity menu when you select one or more Sound objects. This command autocorrelates the selected Sound object. As a result, a new Sound will appear in the list of objects; this new Sound is the autocorrelation of the original Sound.

Settings

Amplitude scaling
Here you can choose between the “principled” options integral, sum, and normalize, which are explained in 1, 2 and 3 below. There is also a “pragmatic” option, namely peak 0.99, which scales the resulting sound in such a way that its absolute peak becomes 0.99, so that the sound tends to be clearly audible without distortion when you play it (see Sound: Scale peak...).
Signal outside time domain is...
Here you can choose whether outside its time domain the sound is considered to be zero (the standard value), or similar to the sound within the time domain. This is explained in 4 below.

1. Autocorrelation as an integral

The autocorrelation of a continuous time signal f(t) is a function of the lag time τ, and defined as the integral

Rf (τ) ≡ ∫ f(t) f(t+τ) dt

If f is a sampled signal (as Sounds are in Praat), with sampling period Δt, the definition is discretized as

Rf [τ] ≡ ∑t f[t] f[t+τ] Δt

where τ and t+τ are the discrete times at which f is defined.

The autocorrelation is symmetric: Rf (-τ) = Rf (τ).

2. Autocorrelation as a sum

You can see in the formula above that if the input Sound is expressed in units of Pa, the resulting Sound should ideally be expressed in Pa2s. Nevertheless, Praat will express it in Pa, because Sounds cannot be expressed otherwise.

This basically means that it is impossible to get the amplitude of the resulting Sound correct for all purposes. For this reason, Praat considers a different definition of autocorrelation as well, namely as the sum

Rf [τ] ≡ ∑t f[t] g[t+τ]

The difference between the integral and sum definitions is that in the sum definition the resulting sound is divided by Δt.

3. Normalized autocorrelation

The normalized autocorrelation is defined as

norm-autocorr (f) (τ) ≡ ∫ f(t) f(t+τ) dt / ∫ f2(t) dt

4. Shape scaling

The boundaries of the integral in 1 are -∞ and +∞. However, f is a Sound object in Praat and therefore has a finite time domain. If f runs from t1 to t2 and is assumed to be zero before t1 and after t2, then the autocorrelation will be zero before t1 - t2 and after t2 - t1, while between t1 - t2 and t2 - t1 it is

Rf (τ) = ∫t1t2 f(t) f(t+τ) dt

In this formula, the argument of the first f runs from t1 to t2, but the argument of the second f runs from t1 + (t1 - t2) to t2 + (t2 - t1), i.e. from t1 - (t2 - t1) to t2 + (t2 - t1). This means that the integration is performed over two equal stretches of time during which f must be taken zero, namely a time stretch before t1 and a time stretch after t2, both of duration t2 - t1.

If you consider the sound outside its time domains as similar to what it is within its time domain, instead of zero, the discretized formula in 1 should be based on the average over the jointly defined values of f[τ] and f[t-τ], without counting any multiplications of values outside the time domain. Suppose that f is defined on the time domain [0, 1.2] with the value of 1 everywhere. Its autocorrelation under the assumption that it is zero elsewhere is then

but under the assumption that the sound is similar (i.e. 1) elsewhere, its autocorrelation should be

i.e. a constant value of 1.2. This is what you get by choosing the similar option; the autocorrelation will be divided by a triangular function to compensate for the fact that the autocorrelation has been computed over fewer values closer to the edges; this procedure is followed in all autocorrelation-based pitch computations in Praat (see Sound: To Pitch...). For examples, see Boersma (1993).

5. Behaviour

The start time of the resulting Sound will be the start time of f minus the end time of f, the end time of the resulting Sound will be the end time of f minus the start time of f, the time of the first sample of the resulting Sound will be the first sample of f minus the last sample of f, the time of the last sample of the resulting Sound will be the last sample of f minus the first sample of f, and the number of samples in the resulting Sound will be twice the number of samples of f, minus 1.

6. Behaviour for stereo and other multi-channel sounds

If the selected Sound has more than one channel, each channel of the resulting Sound is computed as the cross-correlation of the corresponding channel of the original Sound. For instance, if you autocorrelate a 10-channel sound, the resulting sound will again have 10 channels, and its 9th channel will be the autocorrelation of the 9th channel of the original sound.

The amplitude scaling factor will be the same for all channels, so that the relative amplitude of the channels will be preserved in the resulting sound. For the normalize scaling, for instance, the squared norm of f in the formula above is taken over all channels of f. For the peak 0.99 scaling, the resulting sound will typically have an absolute peak of 0.99 in only one channel, and lower absolute peaks in the other channels.

Algorithm

The autocorrelation is calculated as the cross-correlation of a sound with itself.

Links to this page


© djmw & ppgb 20100404