package lacaml
-
lacaml.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Lacaml.common
contains definitions independent of the precision.
Type of 1-norm (`O
), infinity norm (`I
) and the Frobenius norm (`F
). `M
is the maximum of the absolute values (not a true matrix norm).
type eigen_value_sort = [
| `No_sort
| `Select_left_plane
| `Select_right_plane
| `Select_interior_disk
| `Select_exterior_disk
| `Select_custom of Stdlib.Complex.t -> bool
]
GEES eigenvalue sort option
InternalError msg
gets raised when BLAS or LAPACK exhibit undefined behaviour.
type int_vec =
(int, Stdlib.Bigarray.int_elt, Stdlib.Bigarray.fortran_layout)
Stdlib.Bigarray.Array1.t
Type of OCaml integer vectors.
val create_int_vec : int -> int_vec
create_int_vec n
type int32_vec =
(int32, Stdlib.Bigarray.int32_elt, Stdlib.Bigarray.fortran_layout)
Stdlib.Bigarray.Array1.t
Type of 32bit Fortran integer vectors.
val create_int32_vec : int -> int32_vec
create_int32_vec n