public class Zsvd extends Object
U^H*X*V = | S |
| 0 |
where S = diag(s1,...,sm) with
s1 >= s2 >= ... >= sn >=0.
If m<n the decomposition has the form
U^H*X*V = | S 0 |,
where S is diagonal of order m. The diagonals of S are the
singular values of A. The columns of U are the left singular
vectors of A and the columns of V are the right singular vectors.| Modifier and Type | Field and Description |
|---|---|
static int |
MAXITER
Limits the number of iterations in the SVD algorithm
|
Zdiagmat |
S
The diagonal matrix of singular values
|
Zmat |
U
The matrix of left singular vectors
|
Zmat |
V
The matrix of right singular vectore
|
public static int MAXITER
public Zmat U
public Zmat V
public Zdiagmat S
public Zsvd(Zmat XX) throws JampackException
XX - A ZmatJampackException - Thrown if maximimum number of iterations is
exceeded.Copyright © 2015. All rights reserved.