package octez-libs

  1. Overview
  2. Docs
A package that contains multiple base libraries used by the Octez suite

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65

doc/octez-libs.plompiler/Plompiler/Linear_algebra/Make_VectorSpace/index.html

Module Linear_algebra.Make_VectorSpaceSource

Parameters

module Field : Field_sig

Signature

include Module_sig with type t = Field.t
Sourcetype t = Field.t
Sourcetype matrix = t array array
Sourceval zeros : int -> int -> matrix

zeros r c is a matrix with r rows and c columns filled with zeros

Sourceval identity : int -> matrix

identity n is the identity matrix of dimension n

Sourceval equal : matrix -> matrix -> bool

matrix equality

Sourceval add : matrix -> matrix -> matrix

matrix addition

Sourceval mul : matrix -> matrix -> matrix

matrix multiplication

Sourceval transpose : matrix -> matrix

matrix transposition

Sourceval row_add : ?coeff:t -> int -> int -> matrix -> unit

row_add ~coeff i j m adds to the i-th row, the j-th row times coeff in m

Sourceval row_swap : int -> int -> matrix -> unit

row_swap i j m swaps the i-th and j-th rows of m

Sourceval row_mul : t -> int -> matrix -> unit

row_mul coeff i m multiplies the i-th row by coeff in m

Sourceval filter_cols : (int -> bool) -> matrix -> matrix

filter_cols f m removes the columns of m whose index does not satisfy f

Sourceval split_n : int -> matrix -> matrix * matrix

splits matrix m into the first n columns and the rest, producing two matrices

Sourceval reduced_row_echelon_form : matrix -> matrix

reduced row Echelon form of m

Sourceval inverse : matrix -> matrix

inverse m is the inverse matrix of m

  • raises [Invalid_argument]

    if m is not invertible

OCaml

Innovation. Community. Security.