~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-04-05 23:33:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100405233302-gpqlceked76nw28a
Tags: 2.1-1
* New upstream release.
* Bump Standards-Version to 3.8.4: no changes needed
* Bump debhelper to >= 7
* Switch to 3.0 (quilt) source format:
  - Remove B-D on quilt
  - Add d/source/format
  - Remove d/README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
 
21
21
/**
22
 
 * An interface to classes that implement an algorithm to calculate the 
 
22
 * An interface to classes that implement an algorithm to calculate the
23
23
 * Cholesky decomposition of a real symmetric positive-definite matrix.
24
 
 * <p>This interface is based on the class with similar name from the now defunct
 
24
 * <p>This interface is based on the class with similar name from the
25
25
 * <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
26
26
 * following changes:</p>
27
27
 * <ul>
34
34
 *   #getSolver() getSolver} method and the equivalent method provided by
35
35
 *   the returned {@link DecompositionSolver}.</li>
36
36
 * </ul>
37
 
 *   
 
37
 *
38
38
 * @see <a href="http://mathworld.wolfram.com/CholeskyDecomposition.html">MathWorld</a>
39
39
 * @see <a href="http://en.wikipedia.org/wiki/Cholesky_decomposition">Wikipedia</a>
40
 
 * @version $Revision: 799857 $ $Date: 2009-08-01 09:07:12 -0400 (Sat, 01 Aug 2009) $
 
40
 * @version $Revision: 826627 $ $Date: 2009-10-19 06:27:47 -0400 (Mon, 19 Oct 2009) $
41
41
 * @since 2.0
42
42
 */
43
43
public interface CholeskyDecomposition {
44
44
 
45
45
    /**
46
 
     * Returns the matrix L of the decomposition. 
 
46
     * Returns the matrix L of the decomposition.
47
47
     * <p>L is an lower-triangular matrix</p>
48
48
     * @return the L matrix
49
49
     */