powered by
Performs QR Decomposition of a Complex Matrix without pivoting.
QR(A)
an orthogonal matrix Q and an upper triangular matrix R so that A = QR.
: an \(n\) x \(n\) matrix
Kyle Caudle
Randy Hoover
Jackson Cates
z <- complex(real = rnorm(16), imag = rnorm(16)) A <- matrix(z,nrow=4) QR(A)
Run the code above in your browser using DataLab