orth: Orthonormalization of a matrix

Description Usage Arguments Value Note Author(s) Examples

Description

Returns an orthonormal basis for the range of A.

Usage

1
 orth(A)

Arguments

A

Matrix to be orthogonalized

Value

Q

Orthonormal basis for the range of A

Note

The columns of Q span the same space as the columns of A with t(Q)Q=I.
The number of columns of Q is the rank of A.

Author(s)

Maria Antonietta Del Ferraro mariaantonietta.delferraro@yahoo.it
Henk A.L. Kiers h.a.l.kiers@rug.nl
Paolo Giordani paolo.giordani@uniroma1.it

Examples

1
2
X <- matrix(rnorm(6*3),ncol=3)
Y <- orth(X)

ThreeWay documentation built on May 2, 2019, 9:20 a.m.

Related to orth in ThreeWay...