Eigen_QR: QR decomposition of a matrix

View source: R/EigenR.R

Eigen_QRR Documentation

QR decomposition of a matrix

Description

QR decomposition of a real or complex matrix.

Usage

Eigen_QR(M)

Arguments

M

a matrix, real or complex

Value

A list with the Q matrix and the R matrix.

Examples

M <- cbind(c(1,2,3), c(4,5,6))
x <- Eigen_QR(M)
x$Q %*% x$R

EigenR documentation built on May 18, 2022, 9:05 a.m.