예제 #1
0
        public void TestApply(string input, int phaseCount, string expected)
        {
            //FFT.Log=console.WriteLine;
            var fft = new FFT();
            var ret = fft.Apply(input, phaseCount);

            Assert.Equal(expected, ret);
        }