Author: luc
Date: Mon Sep 1 04:42:08 2008
New Revision: 690941
URL: http://svn.apache.org/viewvc?rev=690941&view=rev
Log:
typos
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/LUDecomposition.java
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecomposition.java
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/LUDecomposition.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/LUDecomposition.java?rev=690941&r1=690940&r2=690941&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/LUDecomposition.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/LUDecomposition.java
Mon Sep 1 04:42:08 2008
@@ -18,7 +18,7 @@
package org.apache.commons.math.linear;
/**
- * An interface to classes that implement a algorithm to calculate the
+ * An interface to classes that implement an algorithm to calculate the
* LU-decomposition of a real matrix.
* <p>The LU-decomposition of matrix A is a set of three matrices: P, L and U
* such that P×A = L×U. P is a rows permutation matrix that is used
Modified:
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecomposition.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecomposition.java?rev=690941&r1=690940&r2=690941&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecomposition.java
(original)
+++
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecomposition.java
Mon Sep 1 04:42:08 2008
@@ -18,7 +18,7 @@
package org.apache.commons.math.linear;
/**
- * An interface to classes that implement a algorithm to calculate the
+ * An interface to classes that implement an algorithm to calculate the
* QR-decomposition of a real matrix.
* <p>This interface is based on the class with similar name from the now
defunct
* <a href="http://math.nist.gov/javanumerics/jama/">JAMA</a> library, with the