package phylogenetics

  1. Overview
  2. Docs

This modules wraps linear algebra functions

module type Vector = sig ... end

A vector of floats.

module type Matrix = sig ... end

A square matrix of floats.

module type S = sig ... end
include S with type mat = private Lacaml.D.mat and type vec = private Lacaml.D.vec
type vec = private Lacaml.D.vec
type mat = private Lacaml.D.mat
module Vector : Vector with type t = vec
module Matrix : Matrix with type t = mat and type vec := vec