Learn R Programming

gpuR (version 2.0.6)

qr.gpuMatrix: The QR Decomposition of a gpuR matrix

Description

qr computes the QR decomposition of a gpuR matrix

Usage

# S3 method for gpuMatrix
qr(x, ..., inplace = FALSE)

# S3 method for vclMatrix qr(x, ..., inplace = FALSE)

Value

A list containing the QR decomposition of the matrix of class gpuQR. The returned value is a list with the following components:

  • qr a matrix with the same dimensions as x.

  • betas vector of numeric values containing additional information of qr for extracting Q and R matrices.

Arguments

x

A gpuR matrix

...

further arguments passed to or from other methods

inplace

Logical indicating if operations performed inplace

Author

Charles Determan Jr.

See Also