gsvd
Generalized singular value decomposition
Syntax
Description
returns the vector of generalized singular values,
sigma
= gsvd(A
,B
)sqrt(diag(C'*C)./diag(S'*S))
. When B
is square and
nonsingular, the generalized singular values, gsvd(A,B)
, correspond to
the ordinary singular values, svd(A/B)
, but they are sorted in the
opposite order. Their reciprocals are gsvd(B,A)
.
Examples
Input Arguments
Output Arguments
Algorithms
The generalized singular value decomposition performed by the gsvd
function uses a C-S decomposition, as well as the built-in svd
and
qr
functions.