module Fit: Gsl_fit
type
linear_fit_coeffs = {
|
c0 : |
|
c1 : |
|
cov00 : |
|
cov01 : |
|
cov11 : |
|
sumsq : |
val linear : ?weight:float array ->
float array -> float array -> linear_fit_coeffs
val linear_est : float -> coeffs:linear_fit_coeffs -> Gsl_fun.result
type
mul_fit_coeffs = {
|
m_c1 : |
|
m_cov11 : |
|
m_sumsq : |
val mul : ?weight:float array -> float array -> float array -> mul_fit_coeffs
val mul_est : float -> coeffs:mul_fit_coeffs -> Gsl_fun.result