From 4de8470c862a11c20189a64365e7fd48168cd37f Mon Sep 17 00:00:00 2001 From: Sebastien Brisard Date: Sun, 1 Apr 2012 13:10:08 +0000 Subject: [PATCH] Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1308098 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/math3/linear/QRDecomposition.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java b/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java index 8fa37c2f4..2188dd0e5 100644 --- a/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java +++ b/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java @@ -207,7 +207,7 @@ public class QRDecomposition { /** * Returns the transpose of the matrix Q of the decomposition. *

Q is an orthogonal matrix

- * @return the Q matrix + * @return the transpose of the Q matrix, QT */ public RealMatrix getQT() { if (cachedQT == null) {