fullqr: full rank QR decomposition.

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/mat_oper.R

Description

Is actual QR decomposition matrix, created for compatibility to nlr package functions.

Usage

1
fullqr(x)

Arguments

x

A Square matrix.

Details

Compute QR matrices, and provide explicit matrix form of lower triangular and upper triangular matrices.

Value

List of standard matrix form to be used in internal functions in nlr.

Note

Used mostly for internal purposes.

Author(s)

Hossein Riazoshams, Jan 2010. Email: riazihosein@gmail.com URL http://www.riazoshams.com/nlr/

References

Riazoshams H, Midi H, and Ghilagaber G, 2018,. Robust Nonlinear Regression, with Application using R, Joh Wiley and Sons.

See Also

nlsqr

Examples

1
2
 a1=matrix(c(1,2,3,4,5,6,7,8,9),nrow=3)
 fullqr(a1)

nlr documentation built on July 31, 2019, 5:09 p.m.

Related to fullqr in nlr...