RosettaCodeData/Task/Fast-Fourier-transform/Ada/fast-fourier-transform-1.ada
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
225 B
Ada

with Ada.Numerics.Generic_Complex_Arrays;
generic
with package Complex_Arrays is
new Ada.Numerics.Generic_Complex_Arrays (<>);
use Complex_Arrays;
function Generic_FFT (X : Complex_Vector) return Complex_Vector;