Learn R Programming

rTensor2 (version 2.0.0)

QR: QR Decomposition of a Complex Matrix Without Pivoting

Description

Performs QR Decomposition of a Complex Matrix without pivoting.

Usage

QR(A)

Value

an orthogonal matrix Q and an upper triangular matrix R so that A = QR.

Arguments

A

: an \(n\) x \(n\) matrix

Author

Kyle Caudle

Randy Hoover

Jackson Cates

Examples

Run this code
z <- complex(real = rnorm(16), imag = rnorm(16))
A <- matrix(z,nrow=4)
QR(A)

Run the code above in your browser using DataLab