Blame roots/secant.c

Packit 67cb25
/* roots/secant.c
Packit 67cb25
 * 
Packit 67cb25
 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough
Packit 67cb25
 * 
Packit 67cb25
 * This program is free software; you can redistribute it and/or modify
Packit 67cb25
 * it under the terms of the GNU General Public License as published by
Packit 67cb25
 * the Free Software Foundation; either version 3 of the License, or (at
Packit 67cb25
 * your option) any later version.
Packit 67cb25
 * 
Packit 67cb25
 * This program is distributed in the hope that it will be useful, but
Packit 67cb25
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 67cb25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 67cb25
 * General Public License for more details.
Packit 67cb25
 * 
Packit 67cb25
 * You should have received a copy of the GNU General Public License
Packit 67cb25
 * along with this program; if not, write to the Free Software
Packit 67cb25
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 67cb25
 */
Packit 67cb25
Packit 67cb25
/* secant.c -- secant root finding algorithm 
Packit 67cb25
Packit 67cb25
   The secant algorithm is a variant of the Newton algorithm with the
Packit 67cb25
   derivative term replaced by a numerical estimate from the last two
Packit 67cb25
   function evaluations.
Packit 67cb25
Packit 67cb25
   x[i+1] = x[i] - f(x[i]) / f'_est
Packit 67cb25
Packit 67cb25
   where f'_est = (f(x[i]) - f(x[i-1])) / (x[i] - x[i-1])
Packit 67cb25
Packit 67cb25
   The exact derivative is used for the initial value of f'_est.
Packit 67cb25
Packit 67cb25
*/
Packit 67cb25
Packit 67cb25
#include <config.h>
Packit 67cb25
Packit 67cb25
#include <stddef.h>
Packit 67cb25
#include <stdlib.h>
Packit 67cb25
#include <stdio.h>
Packit 67cb25
#include <math.h>
Packit 67cb25
#include <float.h>
Packit 67cb25
Packit 67cb25
#include <gsl/gsl_math.h>
Packit 67cb25
#include <gsl/gsl_errno.h>
Packit 67cb25
#include <gsl/gsl_roots.h>
Packit 67cb25
Packit 67cb25
#include "roots.h"
Packit 67cb25
Packit 67cb25
typedef struct
Packit 67cb25
  {
Packit 67cb25
    double f;
Packit 67cb25
    double df;
Packit 67cb25
  }
Packit 67cb25
secant_state_t;
Packit 67cb25
Packit 67cb25
static int secant_init (void * vstate, gsl_function_fdf * fdf, double * root);
Packit 67cb25
static int secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root);
Packit 67cb25
Packit 67cb25
static int
Packit 67cb25
secant_init (void * vstate, gsl_function_fdf * fdf, double * root)
Packit 67cb25
{
Packit 67cb25
  secant_state_t * state = (secant_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  const double x = *root;
Packit 67cb25
Packit 67cb25
  GSL_FN_FDF_EVAL_F_DF (fdf, x, &(state->f), &(state->df));
Packit 67cb25
  
Packit 67cb25
  return GSL_SUCCESS;
Packit 67cb25
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static int
Packit 67cb25
secant_iterate (void * vstate, gsl_function_fdf * fdf, double * root)
Packit 67cb25
{
Packit 67cb25
  secant_state_t * state = (secant_state_t *) vstate;
Packit 67cb25
  
Packit 67cb25
  const double x = *root ;
Packit 67cb25
  const double f = state->f;
Packit 67cb25
  const double df = state->df;
Packit 67cb25
Packit 67cb25
  double x_new, f_new, df_new;
Packit 67cb25
Packit 67cb25
  if(f == 0.0)
Packit 67cb25
  {
Packit 67cb25
	  return GSL_SUCCESS;
Packit 67cb25
  }
Packit 67cb25
Packit 67cb25
  if(df == 0.0)
Packit 67cb25
    {
Packit 67cb25
      GSL_ERROR("derivative is zero", GSL_EZERODIV);
Packit 67cb25
    }
Packit 67cb25
Packit 67cb25
  x_new = x - (f / df);
Packit 67cb25
Packit 67cb25
  f_new = GSL_FN_FDF_EVAL_F(fdf, x_new) ;
Packit 67cb25
  df_new = df * ((f - f_new) / f);
Packit 67cb25
Packit 67cb25
  *root = x_new ;
Packit 67cb25
Packit 67cb25
  state->f = f_new ;
Packit 67cb25
  state->df = df_new ;
Packit 67cb25
Packit 67cb25
  if (!gsl_finite (f_new))
Packit 67cb25
    {
Packit 67cb25
      GSL_ERROR ("function value is not finite", GSL_EBADFUNC);
Packit 67cb25
    }
Packit 67cb25
Packit 67cb25
  if (!gsl_finite (df_new))
Packit 67cb25
    {
Packit 67cb25
      GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC);
Packit 67cb25
    }
Packit 67cb25
      
Packit 67cb25
  return GSL_SUCCESS;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
Packit 67cb25
static const gsl_root_fdfsolver_type secant_type =
Packit 67cb25
{"secant",                              /* name */
Packit 67cb25
 sizeof (secant_state_t),
Packit 67cb25
 &secant_init,
Packit 67cb25
 &secant_iterate};
Packit 67cb25
Packit 67cb25
const gsl_root_fdfsolver_type  * gsl_root_fdfsolver_secant = &secant_type;