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:
Phil Steitz 2009-10-19 10:27:47 +00:00
parent adbe097b2b
commit c30aac9ad6
6 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ package org.apache.commons.math.linear;
/**
* An interface to classes that implement an algorithm to calculate the
* 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
* following changes:</p>
* <ul>

View File

@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
* V and D such that A = V &times; D &times; V<sup>T</sup>.
* A, V and D are all m &times; m matrices.</p>
* <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>
* <ul>
* <li>a {@link #getVT() getVt} method has been added,</li>

View File

@ -26,7 +26,7 @@ import org.apache.commons.math.FieldElement;
* such that P&times;A = L&times;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
* 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>
* <ul>
* <li>a {@link #getP() getP} method has been added,</li>

View File

@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
* such that P&times;A = L&times;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
* 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>
* <ul>
* <li>a {@link #getP() getP} method has been added,</li>

View File

@ -21,7 +21,7 @@ package org.apache.commons.math.linear;
/**
* An interface to classes that implement an algorithm to calculate the
* 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
* following changes:</p>
* <ul>

View File

@ -27,7 +27,7 @@ package org.apache.commons.math.linear;
* Let A be an m &times; n matrix, then U is an m &times; m orthogonal matrix,
* &Sigma; is a m &times; n diagonal matrix with positive diagonal elements,
* and V is an n &times; 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
* following changes:</p>
* <ul>