Author: luc
Date: Sun Sep 28 09:28:50 2008
New Revision: 699855
URL: http://svn.apache.org/viewvc?rev=699855&view=rev
Log:
fixed an matrix mismatch error
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java?rev=699855&r1=699854&r2=699855&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
Sun Sep 28 09:28:50 2008
@@ -205,7 +205,7 @@
public RealMatrix getQT()
throws IllegalStateException {
- if (cachedQ == null) {
+ if (cachedQT == null) {
checkDecomposed();