From 13ea282ab8fa16207f871ed08b9c329112fa7cbd Mon Sep 17 00:00:00 2001
From: Luc Maisonobe
Date: Mon, 3 Nov 2008 21:30:07 +0000
Subject: [PATCH] simplified a javadoc sentence
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@710167 13f79535-47bb-0310-9956-ffa450edef68
---
.../org/apache/commons/math/linear/EigenDecomposition.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/java/org/apache/commons/math/linear/EigenDecomposition.java b/src/java/org/apache/commons/math/linear/EigenDecomposition.java
index 0fd95e30c..f17694629 100644
--- a/src/java/org/apache/commons/math/linear/EigenDecomposition.java
+++ b/src/java/org/apache/commons/math/linear/EigenDecomposition.java
@@ -22,8 +22,7 @@ package org.apache.commons.math.linear;
* eigen decomposition of a real symmetric matrix.
* The eigen decomposition of matrix A is a set of two matrices:
* V and D such that A = V × D × VT.
- * Let A be an m × n matrix, then V is an m × m orthogonal matrix
- * and D is a m × n diagonal matrix.
+ * A, V and D are all m × m matrices.
* This interface is similar in spirit to the EigenvalueDecomposition
* class from the now defunct JAMA
* library, with the following changes: