package gsl

  1. Overview
  2. Docs

Fast Fourier Transforms

exception Wrong_layout
type layout =
  1. | Real
  2. | Halfcomplex
  3. | Halfcomplex_rad2
  4. | Complex
type fft_array = {
  1. mutable layout : layout;
  2. data : float array;
}
module Real : sig ... end
module Halfcomplex : sig ... end
module Complex : sig ... end
val hc_mult : fft_array -> fft_array -> unit
val hc_mult_rad2 : fft_array -> fft_array -> unit