Whitening transformation


A whitening transformation or sphering transformation is a linear transformation that transforms a vector of random variables with a known covariance matrix into a set of new variables whose covariance is the identity matrix, meaning that they are uncorrelated and each have variance 1. The transformation is called "whitening" because it changes the input vector into a white noise vector.
Several other transformations are closely related to whitening:
  1. the decorrelation transform removes only the correlations but leaves variances intact,
  2. the standardization transform sets variances to 1 but leaves correlations intact,
  3. a coloring transformation transforms a vector of white random variables into a random vector with a specified covariance matrix.

    Definition

Suppose is a random vector with non-singular covariance matrix and mean. Then the transformation with
a whitening matrix satisfying the condition yields the whitened random vector with unit diagonal covariance.
There are infinitely many possible whitening matrices that all satisfy the above condition. Commonly used choices are , the Cholesky decomposition of , or the eigen-system of .
Optimal whitening transforms can be singled out by investigating the cross-covariance and cross-correlation of and. For example, the unique optimal whitening transformation achieving maximal component-wise correlation between original and whitened is produced by the whitening matrix where is the correlation matrix and the variance matrix.

Whitening a data matrix

Whitening a data matrix follows the same transformation as for random variables. An empirical whitening transform is obtained by estimating the covariance and subsequently constructing a corresponding estimated whitening matrix.

R implementation

An implementation of several whitening procedures in R, including ZCA-whitening and PCA whitening but also CCA whitening, is available in the "whitening" R package published on CRAN.