Entry 4751
wrapper
Submitted by anonymous
on May 31, 2010 at 7:37 p.m.
Language: C#. Code size: 350 bytes.
public static void cfftf(int n, float[] c, float[] wsave, int[] ifac) { if (n <= 1) return; float[] tempArr = new float[n << 1]; cfftf1(n, c, tempArr, wsave, ifac); } public static void cfftf1(int n, float[] c, float[] ch, float[] wa, int[] ifac) {
This snippet took 0.01 seconds to highlight.
Back to the Entry List or Home.