Skip to content

Commit cd00e1e

Browse files
committedDec 30, 2013
Switch Java sign constants
1 parent 580d6e5 commit cd00e1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎java/src/nz/ac/waikato/ffts/FFTS.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ private FFTS(long p, long inSize, long outSize) {
6666
/**
6767
* The sign to use for a forward transform.
6868
*/
69-
public static final int FORWARD = 1;
69+
public static final int FORWARD = -1;
7070
/**
7171
* The sign to use for a backward transform.
7272
*/
73-
public static final int BACKWARD = -1;
73+
public static final int BACKWARD = 1;
7474

7575
/**
7676
* Create a FFT plan for a 1-dimensional complex transform.

0 commit comments

Comments
 (0)
Please sign in to comment.