MATLAB Function Reference
  Go to function:
    Search    Help Desk 
qrdelete    See Also

Delete column from QR factorization

Syntax

Description

[Q,R] = qrdelete(Q,R,j) changes Q and R to be the factorization of the matrix A with its jth column, A(:,j), removed.

Inputs Q and R represent the original QR factorization of matrix A, as returned by the statement [Q,R] = qr(A). Argument j specifies the column to be removed from matrix A.

Algorithm

The qrdelete function uses a series of Givens rotations to zero out the appropriate elements of the factorization.

See Also

qr          Orthogonal-triangular decomposition

qrinsert    Insert column in QR factorization



[ Previous | Help Desk | Next ]