PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_mv_rot_procrustes (g03bc)
Purpose
nag_mv_rot_procrustes (g03bc) computes Procrustes rotations in which an orthogonal rotation is found so that a transformed matrix best matches a target matrix.
Syntax
[
x,
y,
yhat,
r,
alpha,
rss,
res,
ifail] = g03bc(
stand,
pscale,
x,
y, 'n',
n, 'm',
m)
[
x,
y,
yhat,
r,
alpha,
rss,
res,
ifail] = nag_mv_rot_procrustes(
stand,
pscale,
x,
y, 'n',
n, 'm',
m)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: |
n was made optional |
Description
Let and be by 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.
References
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
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
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:
– string (length ≥ 1)
-
Indicates if least squares scaling is to be applied after rotation.
- Scaling is applied.
- No scaling is applied.
Constraint:
or .
- 3:
– double array
-
ldx, the first dimension of the array, must satisfy the constraint
.
, the matrix to be rotated.
- 4:
– double array
-
ldy, the first dimension of the array, must satisfy the constraint
.
The target matrix, .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
x,
y. (An error is raised if these dimensions are not equal.)
, the number of points.
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the arrays
x,
y. (An error is raised if these dimensions are not equal.)
, the number of dimensions.
Constraint:
.
Output Parameters
- 1:
– double array
-
If
,
x will be unchanged.
If
,
,
or
,
x will be translated to have zero column means.
If
or
,
x will be scaled to have unit sum of squares.
If
,
x will be scaled to have the same sum of squares as
y.
- 2:
– double array
-
If
,
y will be unchanged.
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.
- 3:
– double array
-
The fitted matrix, .
- 4:
– double array
-
The matrix of rotations,
, see
Further Comments.
- 5:
– double scalar
-
If
the scaling factor,
; otherwise
alpha is not set.
-
The residual sum of squares.
- 7:
– double array
-
The residuals,
, for .
- 8:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | , |
or | , |
or | , |
or | , |
or | , |
or | , , , , or , |
or | or . |
-
-
On entry, either
x or
y contain only zero-points (possibly after translation) when normalization is to be applied.
-
-
The matrix 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.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The accuracy of the calculation of the rotation matrix largely depends upon the singular value decomposition. See the
F08 Chapter Introduction for further details.
Further 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.
Example
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.
Open in the MATLAB editor:
g03bc_example
function g03bc_example
fprintf('g03bc example results\n\n');
x = [0.63, 0.58;
1.36, 0.39;
1.01, 1.76];
y = [0, 0;
1, 0;
0, 2];
stand = 'c';
pscale = 's';
[x, y, yhat, r, alpha, rss, res, ifail] = ...
g03bc( ...
stand, pscale, x, y);
mtitle = 'Rotation matrix';
matrix = 'General';
diag = ' ';
[ifail] = x04ca( ...
matrix, diag, r, mtitle);
fprintf('\nScale factor = %7.3f\n\n', alpha);
mtitle = 'Target matrix';
[ifail] = x04ca( ...
matrix, diag, y, mtitle);
fprintf('\n');
mtitle = 'Fitted matrix';
[ifail] = x04ca( ...
matrix, diag, yhat, mtitle);
fprintf('\nRSS = %7.3f\n', rss);
g03bc example results
Rotation matrix
1 2
1 0.9673 0.2536
2 -0.2536 0.9673
Scale factor = 1.556
Target matrix
1 2
1 0.0000 0.0000
2 1.0000 0.0000
3 0.0000 2.0000
Fitted matrix
1 2
1 -0.0934 0.0239
2 1.0805 0.0259
3 0.0130 1.9502
RSS = 0.019
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015