Eigen_QR | R Documentation |
QR decomposition of a real or complex matrix.
Eigen_QR(M)
M |
a matrix, real or complex |
A list with the Q
matrix and the R
matrix.
M <- cbind(c(1,2,3), c(4,5,6))
x <- Eigen_QR(M)
x$Q %*% x$R
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.