package owl-base

  1. Overview
  2. Docs
OCaml Scientific and Engineering Computing - Base

Install

dune-project
 Dependency

Authors

Maintainers

Sources

owl-1.0.0.tbz
sha256=d91ba09488edd602dad845f68db1f980a601bdbb55d9516e3b59681eca20debe
sha512=9b31c3474a94c3b11d1dedba00639e770737e61f2e724a1288066ed976e4d0f8afe891a430e17ecf525fbca92e433d71d1b66d3ba17d4e299a4f8fdc3b902461

doc/owl-base/Owl_base_linalg_z/index.html

Module Owl_base_linalg_zSource

Sourcetype elt = Complex.t
include Owl_base_linalg_intf.Common with type elt := elt and type mat := mat and type complex_mat := mat and type int32_mat := int32_mat
Basic functions
Sourceval inv : mat -> mat
Sourceval det : mat -> elt
Sourceval logdet : mat -> elt
Sourceval is_triu : mat -> bool
Sourceval is_tril : mat -> bool
Sourceval is_symmetric : mat -> bool
Sourceval is_diag : mat -> bool
Factorisation
Sourceval svd : ?thin:bool -> mat -> mat * mat * mat
Sourceval chol : ?upper:bool -> mat -> mat
Sourceval qr : ?thin:bool -> ?pivot:bool -> mat -> mat * mat * int32_mat
Sourceval lq : ?thin:bool -> mat -> mat * mat
Linear system of equations
Sourceval linsolve : ?trans:bool -> ?typ:[ `n | `u | `l ] -> mat -> mat -> mat
Sourceval sylvester : mat -> mat -> mat -> mat
Sourceval lyapunov : mat -> mat -> mat
Sourceval discrete_lyapunov : ?solver:[ `default | `direct | `bilinear ] -> mat -> mat -> mat