mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
13 lines
273 B
OCaml
13 lines
273 B
OCaml
(** Signature for matrices built on the {!Basis.t} *)
|
|
|
|
open Gaussian
|
|
open Linear_algebra
|
|
|
|
type t = (Basis.t, Basis.t) Matrix.t
|
|
|
|
val of_basis : Basis.t -> t
|
|
(** Build from a {!Basis.t}. *)
|
|
|
|
val of_basis_pair : Basis.t -> Basis.t -> t
|
|
(** Build from a pair of {!Basis.t}. *)
|