removed a leftover print statement
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@728643 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4bd8d8bc13
commit
46664c3e99
|
@ -174,7 +174,6 @@ public class EigenDecompositionImplTest extends TestCase {
|
|||
double lambda = ed.getEigenvalue(i);
|
||||
RealVector v = ed.getEigenvector(i);
|
||||
RealVector mV = matrix.operate(v);
|
||||
System.out.println(lambda + " " + v + " " + mV);
|
||||
assertEquals(0, mV.subtract(v.mapMultiplyToSelf(lambda)).getNorm(), 1.0e-13);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue