fixed a non-static call to a static method
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@566837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ea14dd91da
commit
282cd1de7d
|
@ -62,7 +62,7 @@ public final class FastFourierTransformerTest extends TestCase {
|
|||
}
|
||||
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue