Source file owl_fft.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 1 "src/owl/fftpack/owl_fft.ml"
(*
 * OWL - an OCaml numerical library for scientific computing
 * Copyright (c) 2016-2018 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)


module Generic = struct

  include Owl_fft_generic

end


module S = struct

  include Owl_fft_s

end


module D = struct

  include Owl_fft_d

end