package owl

  1. Overview
  2. Docs
type mblk_struct
type vec_struct

structure definition for vector, refer to gsl_vector_double.h

type mat_struct

structure definition for dense matrix, refer to gsl_matrix_double.h

type vec_record = {
  1. mutable vsize : int;
  2. mutable stride : int;
  3. mutable vdata : elt_array;
  4. mutable vptr : vec_struct Ctypes_static.structure Ctypes_static.ptr;
}

define the vector record