Author: luc
Date: Thu Aug 16 13:40:28 2007
New Revision: 566837
URL: http://svn.apache.org/viewvc?view=rev&rev=566837
Log:
fixed a non-static call to a static method
Modified:
commons/proper/math/trunk/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java
Modified:
commons/proper/math/trunk/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java?view=diff&rev=566837&r1=566836&r2=566837
==============================================================================
---
commons/proper/math/trunk/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java
(original)
+++
commons/proper/math/trunk/src/test/org/apache/commons/math/transform/FastFourierTransformerTest.java
Thu Aug 16 13:40:28 2007
@@ -62,7 +62,7 @@
}
double x2[] = {10.4, 21.6, 40.8, 13.6, 23.2, 32.8, 13.6, 19.2};
- transformer.scaleArray(x2, 1.0 / Math.sqrt(x2.length));
+ FastFourierTransformer.scaleArray(x2, 1.0 / Math.sqrt(x2.length));
Complex y2[] = y;
result = transformer.transform2(y2);