package owl-base

  1. Overview
  2. Docs
An OCaml Numerical Library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

owl-base-0.3.8.tbz
sha256=7e7725e9a1a967b2af54d7f091a0aea76c54e9abeb4220947921864ef6ffe7d0
md5=247e4b6e6190df68830095441e71e69a

doc/owl-base/Owl_view/index.html

Module Owl_view

View module This module is used to create views atop of an ndarray. The view creation is very light-weighted and avoids copying actual data. You can further create views atop of existing views using slicing functions.

All the views share the same underlying ndarray and any modification will be reflected on the original ndarray.

module Make (A : Owl_types.Ndarray_Basic) : sig ... end