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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/* cheb/eval.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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 <stdlib.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_chebyshev.h>
/* For efficiency there are separate implementations of each of these
functions */
double
gsl_cheb_eval (const gsl_cheb_series * cs, const double x)
{
size_t i;
double d1 = 0.0;
double d2 = 0.0;
double y = (2.0 * x - cs->a - cs->b) / (cs->b - cs->a);
double y2 = 2.0 * y;
for (i = cs->order; i >= 1; i--)
{
double temp = d1;
d1 = y2 * d1 - d2 + cs->c[i];
d2 = temp;
}
return y * d1 - d2 + 0.5 * cs->c[0];
}
double
gsl_cheb_eval_n (const gsl_cheb_series * cs, const size_t n, const double x)
{
size_t i;
double d1 = 0.0;
double d2 = 0.0;
size_t eval_order = GSL_MIN (n, cs->order);
double y = (2.0 * x - cs->a - cs->b) / (cs->b - cs->a);
double y2 = 2.0 * y;
for (i = eval_order; i >= 1; i--)
{
double temp = d1;
d1 = y2 * d1 - d2 + cs->c[i];
d2 = temp;
}
return y * d1 - d2 + 0.5 * cs->c[0];
}
int
gsl_cheb_eval_err (const gsl_cheb_series * cs, const double x,
double *result, double *abserr)
{
size_t i;
double d1 = 0.0;
double d2 = 0.0;
double y = (2. * x - cs->a - cs->b) / (cs->b - cs->a);
double y2 = 2.0 * y;
double absc = 0.0;
for (i = cs->order; i >= 1; i--)
{
double temp = d1;
d1 = y2 * d1 - d2 + cs->c[i];
d2 = temp;
}
*result = y * d1 - d2 + 0.5 * cs->c[0];
/* Estimate cumulative numerical error */
for (i = 0; i <= cs->order; i++)
{
absc += fabs(cs->c[i]);
}
/* Combine truncation error and numerical error */
*abserr = fabs (cs->c[cs->order]) + absc * GSL_DBL_EPSILON;
return GSL_SUCCESS;
}
int
gsl_cheb_eval_n_err (const gsl_cheb_series * cs,
const size_t n, const double x,
double *result, double *abserr)
{
size_t i;
double d1 = 0.0;
double d2 = 0.0;
double y = (2. * x - cs->a - cs->b) / (cs->b - cs->a);
double y2 = 2.0 * y;
double absc = 0.0;
size_t eval_order = GSL_MIN (n, cs->order);
for (i = eval_order; i >= 1; i--)
{
double temp = d1;
d1 = y2 * d1 - d2 + cs->c[i];
d2 = temp;
}
*result = y * d1 - d2 + 0.5 * cs->c[0];
/* Estimate cumulative numerical error */
for (i = 0; i <= eval_order; i++)
{
absc += fabs(cs->c[i]);
}
/* Combine truncation error and numerical error */
*abserr = fabs (cs->c[eval_order]) + absc * GSL_DBL_EPSILON;
return GSL_SUCCESS;
}
int
gsl_cheb_eval_mode_e (const gsl_cheb_series * cs,
const double x, gsl_mode_t mode,
double *result, double *abserr)
{
size_t i;
double d1 = 0.0;
double d2 = 0.0;
double y = (2. * x - cs->a - cs->b) / (cs->b - cs->a);
double y2 = 2.0 * y;
double absc = 0.0;
size_t eval_order;
if (GSL_MODE_PREC (mode) == GSL_PREC_DOUBLE)
eval_order = cs->order;
else
eval_order = cs->order_sp;
for (i = eval_order; i >= 1; i--)
{
double temp = d1;
d1 = y2 * d1 - d2 + cs->c[i];
d2 = temp;
}
*result = y * d1 - d2 + 0.5 * cs->c[0];
/* Estimate cumulative numerical error */
for (i = 0; i <= eval_order; i++)
{
absc += fabs(cs->c[i]);
}
/* Combine truncation error and numerical error */
*abserr = fabs (cs->c[eval_order]) + absc * GSL_DBL_EPSILON;
return GSL_SUCCESS;
}
double
gsl_cheb_eval_mode (const gsl_cheb_series * cs,
const double x, gsl_mode_t mode)
{
double result, abserr;
int status = gsl_cheb_eval_mode_e (cs, x, mode, &result, &abserr);
if (status != GSL_SUCCESS)
{
GSL_ERROR_VAL("gsl_cheb_eval_mode", status, result);
};
return result;
}
|