package gsl

  1. Overview
  2. Docs

Nonlinear Least-Squares Fitting

type t
type kind =
  1. | LMSDER
  2. | LMDER
val make : kind -> n:int -> p:int -> Gsl_fun.multi_fun_fdf -> Gsl_vector.vector -> t
val name : t -> string
val iterate : t -> unit
val position : t -> Gsl_vector.vector -> unit
val get_state : t -> ?x:Gsl_vector.vector -> ?f:Gsl_vector.vector -> ?dx:Gsl_vector.vector -> unit -> unit
val test_delta : t -> epsabs:float -> epsrel:float -> bool
val test_gradient : t -> Gsl_matrix.matrix -> epsabs:float -> Gsl_vector.vector -> bool
val covar : Gsl_matrix.matrix -> epsrel:float -> Gsl_matrix.matrix -> unit