create.U {cta}R Documentation

Orthogonal Complement of the Column Space of a Matrix

Description

Creates a full column rank matrix, UU, with column space equal to the orthogonal complement of the column space of XX. That is, UU has column space equal to the null space of XX'.

Usage

create.U(X)

Arguments

X

A full column rank matrix.

Value

create.U returns a full column rank matrix U, with column space equal to the orthogonal complement of the column space of X.

Author(s)

Joseph B. Lang

See Also

mph.fit

Examples

X <- matrix(seq(1, 12), ncol = 2, byrow = TRUE)
create.U(X)

[Package cta version 1.3.0 Index]