genOrthogonal | R Documentation |
Generate an orthogonal matrix with given dimension.
genOrthogonal(dim)
dim |
integer. Dimension of the orthogonal matrix. |
An orthogonal matrix with dimension dim
.
set.seed(12345)
Q = genOrthogonal(3)
print(Q)
A = Q
print(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.