//######################################################################################################################### Class SineTable public final class SineTable Describtion: Provides methods to create a complex sine table of size=[(2^power)/2]-1 (with power>=2). The size and structure was choosen to support convenient implementation at complex FFT algorithms. Methods: public static double[][] getSineTable(int power) Creates and returns a complex sine table of size=[(2^power)/2]-1. Returns: An array of the type double[size][2] at which double[n][0] = cos(2*PI*(n+1)/size) and double[n][1] = sin(2*PI*(n+1)/size). Throws: InvalidParameterException if power<2. //#########################################################################################################################