package owl-base

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file owl_base_dense_matrix_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 1 "src/base/dense/owl_base_dense_matrix_intf.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2020 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

module type Common = sig
  type elt

  type arr

  val diagm : ?k:int -> arr -> arr

  val tril : ?k:int -> arr -> arr

  val triu : ?k:int -> arr -> arr
end
OCaml

Innovation. Community. Security.