Repository: commons-math Updated Branches: refs/heads/master 612a04d6b -> f940239fd
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/f940239f Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/f940239f Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/f940239f Branch: refs/heads/master Commit: f940239fd23915d14efaf313bffa09a69824cb9e Parents: 612a04d Author: Gilles <[email protected]> Authored: Tue Jul 18 13:10:50 2017 +0200 Committer: Gilles <[email protected]> Committed: Tue Jul 18 13:10:50 2017 +0200 ---------------------------------------------------------------------- .../java/org/apache/commons/math4/linear/QRDecomposition.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/f940239f/src/main/java/org/apache/commons/math4/linear/QRDecomposition.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/linear/QRDecomposition.java b/src/main/java/org/apache/commons/math4/linear/QRDecomposition.java index aca4098..27569b4 100644 --- a/src/main/java/org/apache/commons/math4/linear/QRDecomposition.java +++ b/src/main/java/org/apache/commons/math4/linear/QRDecomposition.java @@ -86,6 +86,9 @@ public class QRDecomposition { * * @param matrix The matrix to decompose. * @param threshold Singularity threshold. + * The matrix will be considered singular if the absolute value of + * any of the diagonal elements of the "R" matrix is smaller than + * the threshold. */ public QRDecomposition(RealMatrix matrix, double threshold) {
