/usr/lib/ocaml/gsl/gsl_cheb.mli is in libocamlgsl-ocaml-dev 1.19.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | (* gsl-ocaml - OCaml interface to GSL *)
(* Copyright (©) 2002-2012 - Olivier Andrieu *)
(* Distributed under the terms of the GPL version 3 *)
(** Chebyshev Approximations *)
type t
val make : int -> t
external order : t -> int
= "ml_gsl_cheb_order"
external coefs : t -> float array = "ml_gsl_cheb_coefs"
external init : t -> Gsl_fun.gsl_fun -> a:float -> b:float -> unit
= "ml_gsl_cheb_init"
val eval : t -> ?order:int -> float -> float
val eval_err : t -> ?order:int -> float -> Gsl_fun.result
val deriv : t -> t
val integ : t -> t
|