Learn R Programming

ptw (version 1.0-7)

wcc: Weighted auto- and cross-correlation measures

Description

Functions to calculate weighted auto- and cross-correlation measures. The wcc is a suitable measure for the similarity of two patterns when features may be shifted. Identical patterns lead to a wcc value of 1.

Usage

wcc(pattern1, pattern2, trwdth, wghts = NULL, acors1 = NULL, acors2 = NULL)
wac (pattern1, trwdth, wghts = NULL)

Arguments

pattern1, pattern2
input patterns, typically spectra. Vectors
trwdth
triangle width, given in the number of data points
wghts
optional weights vector, will be calculated from triangle width if necessary. Sometimes it is more efficient to pre-calculate it and give it as an argument
acors1, acors2
autocorrelations of the input patterns. If not provided, they are calculated

Value

  • One number, the weighted autocorrelation or crosscorrelation

Details

wcc and wac are defined such that the triangle width stands for the number of points on one side of and including the current point. Thus, a trwdth of 0 signifies a non-existent triangle and results in an error; a trwdth equal to 1 only includes the current point with weight 1 and no neighbouring points.

References

de Gelder, R., Wehrens, R. and Hageman, J.A. (2001) "A generalized expression for the similarity of spectra: Application to powder diffraction pattern classification", Journal of Computational Chemistry, 22, 273 -- 289.

Examples

Run this code
data(gaschrom)
wcc(gaschrom[1,], gaschrom[2,], 20)

Run the code above in your browser using DataLab