|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectJampack.Schur
public class Schur
Schur implements the Schur decomposition of a matrix. Specifically, given a square matrix A, there is a unitary matrix U such that
T = U^H AUis upper triangular. Schur represents T as a Zutmat and U as a Zmat.
Field Summary | |
---|---|
static int |
MAXITER
Limits the number of interations in the QR algorithm |
Zutmat |
T
The upper triangular matrix. |
Zmat |
U
The unitary matrix. |
Constructor Summary | |
---|---|
Schur(Zmat A)
Creats a Schur decomposition from a square Zmat. |
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public Zutmat T
public Zmat U
public static int MAXITER
Constructor Detail |
---|
public Schur(Zmat A) throws JampackException
A
- The Zmat whose Schur decomposition is to be computed
JampackException
- Thrown for nonsquare matrix.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |