Fix checkstyle warning: argument hides field.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1455704 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-12 20:48:14 +00:00
parent c664e4d33c
commit 8586637471
1 changed files with 4 additions and 4 deletions

View File

@ -105,9 +105,9 @@ public class QRDecomposition {
}
/** Decompose matrix.
* @param qrt transposed matrix
* @param matrix transposed matrix
*/
protected void decompose(double[][] qrt) {
protected void decompose(double[][] matrix) {
for (int minor = 0; minor < FastMath.min(qrt.length, qrt[0].length); minor++) {
performHouseholderReflection(minor, qrt);
}
@ -115,9 +115,9 @@ public class QRDecomposition {
/** Perform Householder reflection for a minor A(minor, minor) of A.
* @param minor minor index
* @param qrt transposed matrix
* @param matrix transposed matrix
*/
protected void performHouseholderReflection(int minor, double[][] qrt) {
protected void performHouseholderReflection(int minor, double[][] matrix) {
final double[] qrtMinor = qrt[minor];