RosettaCodeData/Task/Fast-Fourier-transform/Ada/fast-fourier-transform-1.adb
2026-04-30 12:34:36 -04: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;