QR | R Documentation |
Decomposes a complex matrix into the product of an upper triangular matrix and a lower triangular matrix.
QR(A)
A |
square matrix with complex entries |
an orthogonal matrix Q and an upper triangular matrix R so that A = QR.
Kyle Caudle
Randy Hoover
Jackson Cates
Everett Sandbo
Stewart, G. W. (1998). Matrix algorithms: volume 1: basic decompositions. Society for Industrial and Applied Mathematics.
z <- complex(real = rnorm(16), imag = rnorm(16))
A <- matrix(z,nrow=4)
QR(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.