Exemplo n.º 1
0
        public static void forward(complex[] srcdst)
        {
            FFT f = new FFT();

            fixed(complex *_srcdst = srcdst)
            {
                f.Forward(_srcdst, (uint)srcdst.Length);
            }
        }
Exemplo n.º 2
0
        public static void forward(complex[] src, complex[] dst)
        {
            uint l = (uint)System.Math.Min(src.Length, dst.Length);

            fixed(complex *_src = src)
            fixed(complex * _dst = dst)
            {
                f.Forward(_src, _dst, l);
            }
        }
Exemplo n.º 3
0
 public static void forward(complex[] srcdst)
 {
     FFT f = new FFT();
     fixed (complex* _srcdst = srcdst)
     {
         f.Forward(_srcdst, (uint)srcdst.Length);
     }
 }