1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* interpolation/interp_poly.c
*
* Copyright (C) 2001 DAN, HO-JIN
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <config.h>
#include <math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_poly.h>
#include <gsl/gsl_interp.h>
typedef struct
{
double *d;
double *coeff;
double *work;
}
polynomial_state_t;
static void *
polynomial_alloc (size_t size)
{
polynomial_state_t *state =
(polynomial_state_t *) malloc (sizeof (polynomial_state_t));
if (state == 0)
{
GSL_ERROR_NULL ("failed to allocate space for polynomial state",
GSL_ENOMEM);
}
state->d = (double *) malloc (sizeof (double) * size);
if (state->d == 0)
{
free (state);
GSL_ERROR_NULL ("failed to allocate space for d", GSL_ENOMEM);
}
state->coeff = (double *) malloc (sizeof (double) * size);
if (state->coeff == 0)
{
free (state->d);
free (state);
GSL_ERROR_NULL ("failed to allocate space for d", GSL_ENOMEM);
}
state->work = (double *) malloc (sizeof (double) * size);
if (state->work == 0)
{
free (state->coeff);
free (state->d);
free (state);
GSL_ERROR_NULL ("failed to allocate space for d", GSL_ENOMEM);
}
return state;
}
static int
polynomial_init (void *vstate,
const double xa[], const double ya[], size_t size)
{
polynomial_state_t *state = (polynomial_state_t *) vstate;
int status = gsl_poly_dd_init (state->d, xa, ya, size);
return status;
}
static int
polynomial_eval (const void *vstate,
const double xa[], const double ya[], size_t size, double x,
gsl_interp_accel * acc, double *y)
{
const polynomial_state_t *state = (const polynomial_state_t *) vstate;
*y = gsl_poly_dd_eval (state->d, xa, size, x);
return GSL_SUCCESS;
}
static int
polynomial_deriv (const void *vstate,
const double xa[], const double ya[], size_t size, double x,
gsl_interp_accel * acc, double *y)
{
const polynomial_state_t *state = (const polynomial_state_t *) vstate;
gsl_poly_dd_taylor (state->coeff, x, state->d, xa, size, state->work);
*y = state->coeff[1];
return GSL_SUCCESS;
}
static int
polynomial_deriv2 (const void *vstate,
const double xa[], const double ya[], size_t size,
double x, gsl_interp_accel * acc, double *y)
{
const polynomial_state_t *state = (const polynomial_state_t *) vstate;
gsl_poly_dd_taylor (state->coeff, x, state->d, xa, size, state->work);
*y = 2.0 * state->coeff[2];
return GSL_SUCCESS;
}
static int
polynomial_integ (const void *vstate, const double xa[], const double ya[],
size_t size, gsl_interp_accel * acc, double a, double b,
double *result)
{
const polynomial_state_t *state = (const polynomial_state_t *) vstate;
size_t i;
double sum;
gsl_poly_dd_taylor (state->coeff, 0.0, state->d, xa, size, state->work);
sum = state->coeff[0] * (b - a);
for (i = 1; i < size; i++)
{
sum += state->coeff[i] * (pow (b, i + 1) - pow (a, i + 1)) / (i + 1.0);
}
*result = sum;
return GSL_SUCCESS;
}
static void
polynomial_free (void *vstate)
{
polynomial_state_t *state = (polynomial_state_t *) vstate;
free (state->d);
free (state->coeff);
free (state->work);
free (state);
}
static const gsl_interp_type polynomial_type = {
"polynomial",
3,
&polynomial_alloc,
&polynomial_init,
&polynomial_eval,
&polynomial_deriv,
&polynomial_deriv2,
&polynomial_integ,
&polynomial_free,
};
const gsl_interp_type *gsl_interp_polynomial = &polynomial_type;
|