The routine may be called by the names g03bcf or nagf_mv_rot_procrustes.
3Description
Let and be matrices. They can be considered as representing sets of points in an -dimensional space. The matrix may be a matrix of loadings from say factor or canonical variate analysis, and the matrix may be a postulated pattern matrix or the loadings from a different sample. The problem is to relate the two sets of points without disturbing the relationships between the points in each set. This can be achieved by translating, rotating and scaling the sets of points. The matrix is considered as the target matrix and the matrix is rotated to match that matrix.
First the two sets of points are translated so that their centroids are at the origin to give and , i.e., the matrices will have zero column means. Then the rotation of the translated matrix which minimizes the sum of squared distances between corresponding points in the two sets is found. This is computed from the singular value decomposition of the matrix:
where and are orthogonal matrices and is a diagonal matrix. The matrix of rotations, , is computed as:
After rotation, a scaling or dilation factor, , may be estimated by least squares. Thus, the final set of points that best match is given by:
Before rotation, both sets of points may be normalized to have unit sums of squares or the matrix may be normalized to have the same sum of squares as the matrix. After rotation, the results may be translated to the original centroid.
The th residual, , is given by the distance between the point given in the th row of and the point given in the th row of . The residual sum of squares is also computed.
4References
Krzanowski W J (1990) Principles of Multivariate Analysis Oxford University Press
Lawley D N and Maxwell A E (1971) Factor Analysis as a Statistical Method (2nd Edition) Butterworths
5Arguments
1: – Character(1)Input
On entry: indicates if translation/normalization is required.
There is no translation or normalization.
There is translation to the origin (i.e., to zero).
There is translation to origin and then to the centroid after rotation.
There is unit normalization.
There is translation and normalization (i.e., there is standardization).
There is translation and normalization to scale, then translation to the centroid after rotation (i.e., they are matched).
Constraint:
, , , , or .
2: – Character(1)Input
On entry: indicates if least squares scaling is to be applied after rotation.
If or , y will be translated to have zero column means.
If or , y will be scaled to have unit sum of squares.
If or , y will be translated and then after rotation translated back. The output y should be the same as the input y except for rounding errors.
8: – IntegerInput
On entry: the first dimension of the arrays y and yhat as declared in the (sub)program from which g03bcf is called.
Constraint:
.
9: – Real (Kind=nag_wp) arrayOutput
On exit: the fitted matrix, .
10: – Real (Kind=nag_wp) arrayOutput
On exit: the matrix of rotations, , see Section 9.
11: – IntegerInput
On entry: the first dimension of the array r as declared in the (sub)program from which g03bcf is called.
Constraint:
.
12: – Real (Kind=nag_wp)Output
On exit: if the scaling factor, ; otherwise alpha is not set.
13: – Real (Kind=nag_wp)Output
On exit: the residual sum of squares.
14: – Real (Kind=nag_wp) arrayOutput
On exit: the residuals,
, for .
15: – Real (Kind=nag_wp) arrayWorkspace
16: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: or .
On entry, .
Constraint: , , , , or .
Only one distinct point (centred at zero) in x array.
Only one distinct point (centred at zero) in y array.
yhat contains only zero-points when least squares scaling is applied.
The singular value decomposition has failed to converge. This is an unlikely error exit.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The accuracy of the calculation of the rotation matrix largely depends upon the singular value decomposition. See the F08 Chapter Introduction for further details.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
g03bcf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
Note that if the matrix is not of full rank, then the matrix of rotations, , may not be unique even if there is a unique solution in terms of the rotated matrix, . The matrix may also include reflections as well as pure rotations, see Krzanowski (1990).
If the column dimensions of the and matrices are not equal, the smaller of the two should be supplemented by columns of zeros. Adding a column of zeros to both and will have the effect of allowing reflections as well as rotations.
10Example
Three points representing the vertices of a triangle in two dimensions are input. The points are translated and rotated to match the triangle given by , , and scaling is applied after rotation. The target matrix and fitted matrix are printed along with additional information.