예제 #1
0
파일: FFT.cs 프로젝트: GITBSB/workspace-1
        public static void inverse(complex[] srcdst)
        {
            FFT f = new FFT();

            fixed(complex *_srcdst = srcdst)
            {
                f.Inverse(_srcdst, (uint)srcdst.Length, true);
            }
        }
예제 #2
0
파일: FFT.cs 프로젝트: GITBSB/workspace-1
        public static void inverse(complex[] src, complex[] dst)
        {
            uint l = (uint)System.Math.Min(src.Length, dst.Length);
            FFT  f = new FFT();

            fixed(complex *_src = src)
            fixed(complex * _dst = dst)
            {
                f.Inverse(_src, _dst, l, true);
            }
        }
예제 #3
0
파일: FFT.cs 프로젝트: yodamaster/workspace
 public static void inverse(complex[] srcdst)
 {
     FFT f = new FFT();
     fixed (complex* _srcdst = srcdst)
     {
         f.Inverse(_srcdst, (uint)srcdst.Length, true);
     }
 }
예제 #4
0
파일: FFT.cs 프로젝트: yodamaster/workspace
 public static void inverse(complex[] src, complex[] dst)
 {
     uint l = (uint)System.Math.Min(src.Length, dst.Length);
     FFT f = new FFT();
     fixed (complex* _src = src)
     fixed (complex* _dst = dst)
     {
         f.Inverse(_src, _dst, l, true);
     }
 }