powered by
Decomposes a complex matrix into the product of an upper triangular matrix and a lower triangular matrix.
QR(A)
an orthogonal matrix Q and an upper triangular matrix R so that A = QR.
square matrix with complex entries
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)
Run the code above in your browser using DataLab