Javadoc only. Dropped 'now defunct' from JAMA attribution.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@826627 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
adbe097b2b
commit
c30aac9ad6
|
@ -21,7 +21,7 @@ package org.apache.commons.math.linear;
|
||||||
/**
|
/**
|
||||||
* An interface to classes that implement an algorithm to calculate the
|
* An interface to classes that implement an algorithm to calculate the
|
||||||
* Cholesky decomposition of a real symmetric positive-definite matrix.
|
* Cholesky decomposition of a real symmetric positive-definite matrix.
|
||||||
* <p>This interface is based on the class with similar name from the now defunct
|
* <p>This interface is based on the class with similar name from the
|
||||||
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
||||||
* following changes:</p>
|
* following changes:</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
|
|
|
@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
|
||||||
* V and D such that A = V × D × V<sup>T</sup>.
|
* V and D such that A = V × D × V<sup>T</sup>.
|
||||||
* A, V and D are all m × m matrices.</p>
|
* A, V and D are all m × m matrices.</p>
|
||||||
* <p>This interface is similar in spirit to the <code>EigenvalueDecomposition</code>
|
* <p>This interface is similar in spirit to the <code>EigenvalueDecomposition</code>
|
||||||
* class from the now defunct <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a>
|
* class from the <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a>
|
||||||
* library, with the following changes:</p>
|
* library, with the following changes:</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>a {@link #getVT() getVt} method has been added,</li>
|
* <li>a {@link #getVT() getVt} method has been added,</li>
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.commons.math.FieldElement;
|
||||||
* such that P×A = L×U. P is a rows permutation matrix that is used
|
* such that P×A = L×U. P is a rows permutation matrix that is used
|
||||||
* to rearrange the rows of A before so that it can be decomposed. L is a lower
|
* to rearrange the rows of A before so that it can be decomposed. L is a lower
|
||||||
* triangular matrix with unit diagonal terms and U is an upper triangular matrix.</p>
|
* triangular matrix with unit diagonal terms and U is an upper triangular matrix.</p>
|
||||||
* <p>This interface is based on the class with similar name from the now defunct
|
* <p>This interface is based on the class with similar name from the
|
||||||
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library.</p>
|
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library.</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>a {@link #getP() getP} method has been added,</li>
|
* <li>a {@link #getP() getP} method has been added,</li>
|
||||||
|
|
|
@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
|
||||||
* such that P×A = L×U. P is a rows permutation matrix that is used
|
* such that P×A = L×U. P is a rows permutation matrix that is used
|
||||||
* to rearrange the rows of A before so that it can be decomposed. L is a lower
|
* to rearrange the rows of A before so that it can be decomposed. L is a lower
|
||||||
* triangular matrix with unit diagonal terms and U is an upper triangular matrix.</p>
|
* triangular matrix with unit diagonal terms and U is an upper triangular matrix.</p>
|
||||||
* <p>This interface is based on the class with similar name from the now defunct
|
* <p>This interface is based on the class with similar name from the
|
||||||
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library.</p>
|
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library.</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>a {@link #getP() getP} method has been added,</li>
|
* <li>a {@link #getP() getP} method has been added,</li>
|
||||||
|
|
|
@ -21,7 +21,7 @@ package org.apache.commons.math.linear;
|
||||||
/**
|
/**
|
||||||
* An interface to classes that implement an algorithm to calculate the
|
* An interface to classes that implement an algorithm to calculate the
|
||||||
* QR-decomposition of a real matrix.
|
* QR-decomposition of a real matrix.
|
||||||
* <p>This interface is based on the class with similar name from the now defunct
|
* <p>This interface is based on the class with similar name from the
|
||||||
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
||||||
* following changes:</p>
|
* following changes:</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
|
|
|
@ -27,7 +27,7 @@ package org.apache.commons.math.linear;
|
||||||
* Let A be an m × n matrix, then U is an m × m orthogonal matrix,
|
* Let A be an m × n matrix, then U is an m × m orthogonal matrix,
|
||||||
* Σ is a m × n diagonal matrix with positive diagonal elements,
|
* Σ is a m × n diagonal matrix with positive diagonal elements,
|
||||||
* and V is an n × n orthogonal matrix.</p>
|
* and V is an n × n orthogonal matrix.</p>
|
||||||
* <p>This interface is similar to the class with similar name from the now defunct
|
* <p>This interface is similar to the class with similar name from the
|
||||||
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the
|
||||||
* following changes:</p>
|
* following changes:</p>
|
||||||
* <ul>
|
* <ul>
|
||||||
|
|
Loading…
Reference in New Issue