module M':Matrix.Make(R')
typet =R.t array array
typematrix =t
val zero : int -> int -> t
val init : int -> int -> (int -> int -> R.t) -> t
val rows : t -> int
val cols : t -> int
val get : t -> int -> int -> R.t
val to_string : t -> string
module Row:sig..end
Operations on rows.
val row_echelon : t -> tPut a matrix in row echelon form.
val rank : t -> intDimension of the image.
val nullity : t -> intDimension of the kernel.
module Labeled:
Matrices with labeled basis elements.