org.jutil.math.matrix
Interface CholeskyDecomposition

All Known Implementing Classes:
DefaultCholeskyDecomposition

public interface CholeskyDecomposition

This class represents a Cholesky factorization of a symmetric matrix.

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

Field Summary
static java.lang.String CVS_REVISION
           
 
Method Summary
 Matrix R()
          public behavior

post \result != null;
post \result.isUpperTriangular();
post \result.isSquare();
Return the uppertriangular matrix of this CholeskyDecomposition.
 

Field Detail

CVS_REVISION

public static final java.lang.String CVS_REVISION
Method Detail

R

public Matrix R()
public behavior

post \result != null;
post \result.isUpperTriangular();
post \result.isSquare();
Return the uppertriangular matrix of this CholeskyDecomposition.