MATLAB Function Reference | ![]() ![]() |
Delete column from QR factorization
Syntax
[Q,R] = qrdelete(Q,R,j)
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 | qrinsert | ![]() |