Author: celestin
Date: Sun Apr 1 13:10:08 2012
New Revision: 1308098
URL: http://svn.apache.org/viewvc?rev=1308098&view=rev
Log:
Javadoc.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java?rev=1308098&r1=1308097&r2=1308098&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/QRDecomposition.java
Sun Apr 1 13:10:08 2012
@@ -207,7 +207,7 @@ public class QRDecomposition {
/**
* Returns the transpose of the matrix Q of the decomposition.
* <p>Q is an orthogonal matrix</p>
- * @return the Q matrix
+ * @return the transpose of the Q matrix, Q<sup>T</sup>
*/
public RealMatrix getQT() {
if (cachedQT == null) {