org.jutil.math.matrix
Interface SchurDecomposer

All Known Implementing Classes:
ExplicitShiftQRSchurDecomposer

public interface SchurDecomposer

A class of objects that compute the Schur factorization of a matrix.

Version:
$Revision: 1.3 $
Author:
Marko van Dooren

Field Summary
static java.lang.String CVS_REVISION
           
 
Method Summary
 SchurDecomposition decompose(Matrix matrix)
          public behavior

pre matrix != null;
pre matrix.isSquare();

post \result != null;
post (* \result.Q().times(\result.R()).equals(matrix) *);
post \result.Q().getNbRows() == matrix.getNbRows();
 

Field Detail

CVS_REVISION

public static final java.lang.String CVS_REVISION
Method Detail

decompose

public SchurDecomposition decompose(Matrix matrix)
public behavior

pre matrix != null;
pre matrix.isSquare();

post \result != null;
post (* \result.Q().times(\result.R()).equals(matrix) *);
post \result.Q().getNbRows() == matrix.getNbRows();

Return a Schur factorization of this matrix.

Parameters:
matrix - The matrix to decompose.