git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@690941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-09-01 11:42:08 +00:00
parent fb17113403
commit 60cd425556
2 changed files with 2 additions and 2 deletions

View File

@ -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&times;A = L&times;U. P is a rows permutation matrix that is used

View File

@ -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