示例#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
 public static void inverse(complex[] srcdst)
 {
     FFT f = new FFT();
     fixed (complex* _srcdst = srcdst)
     {
         f.Inverse(_srcdst, (uint)srcdst.Length, true);
     }
 }
示例#4
0
 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);
     }
 }