package eigen

  1. Overview
  2. Docs

Source file eigen.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(*
 * Eigen - an OCaml interface to C++ Eigen library
 * Copyright (c) 2016-2020 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

module Dense = struct

  module S = Eigen_dsmat_s

  module D = Eigen_dsmat_d

  module C = Eigen_dsmat_c

  module Z = Eigen_dsmat_z

end


module Sparse = struct

  module S = Eigen_spmat_s

  module D = Eigen_spmat_d

  module C = Eigen_spmat_c

  module Z = Eigen_spmat_z

end



module Tensor = struct

  module S = Eigen_tensor_s

  module D = Eigen_tensor_d

end


module Utils = Eigen_utils


module Types = Eigen_types
OCaml

Innovation. Community. Security.