orthprocr | R Documentation |
Simple function to rotate matrix X so that it matches the target matrix Z as closely as possible, by minimizing ||Z - XQ|| where Z and X are of the same size and Q is an orthogonal matrix. The algorithm is based on the singular value decomposition (SVD) (see e.g. the reference).
orthprocr(Z, X)
Z |
The target matrix |
X |
The matrix to be rotated, which must be of the same size as Z. |
A list with the following 2 elements:
Q |
The rotation matrix |
XQ |
The matrix X after rotation |
Gower, J. C. and Hand, D.J. (1996). Biplots (Vol. 54). CRC Press.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.