source: sasmodels/sasmodels/models/lib/polevl.c @ 3936ad3

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 3936ad3 was 3936ad3, checked in by wojciech, 8 years ago

Bessel functions from double-precison cephes has been added

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*                                                      polevl.c
2 *                                                      p1evl.c
3 *
4 *      Evaluate polynomial
5 *
6 *
7 *
8 * SYNOPSIS:
9 *
10 * int N;
11 * double x, y, coef[N+1], polevl[];
12 *
13 * y = polevl( x, coef, N );
14 *
15 *
16 *
17 * DESCRIPTION:
18 *
19 * Evaluates polynomial of degree N:
20 *
21 *                     2          N
22 * y  =  C  + C x + C x  +...+ C x
23 *        0    1     2          N
24 *
25 * Coefficients are stored in reverse order:
26 *
27 * coef[0] = C  , ..., coef[N] = C  .
28 *            N                   0
29 *
30 *  The function p1evl() assumes that coef[N] = 1.0 and is
31 * omitted from the array.  Its calling arguments are
32 * otherwise the same as polevl().
33 *
34 *
35 * SPEED:
36 *
37 * In the interest of speed, there are no checks for out
38 * of bounds arithmetic.  This routine is used by most of
39 * the functions in the library.  Depending on available
40 * equipment features, the user may wish to rewrite the
41 * program in microcode or assembly language.
42 *
43 */
44
45
46/*
47Cephes Math Library Release 2.1:  December, 1988
48Copyright 1984, 1987, 1988 by Stephen L. Moshier
49Direct inquiries to 30 Frost Street, Cambridge, MA 02140
50*/
51double polevl( double x, double coef[8], int N );
52double p1evl( double x, double coef[8], int N );
53
54double polevl( double x, double coef[8], int N ) {
55
56    int i = 0;
57    double ans = coef[i];
58
59    while (i < N) {
60        i++;
61        ans = ans * x + coef[i];
62    }
63
64    return ans ;
65
66}
67
68/*                                                      p1evl() */
69/*                                          N
70 * Evaluate polynomial when coefficient of x  is 1.0.
71 * Otherwise same as polevl.
72 */
73
74double p1evl( double x, double coef[8], int N ) {
75    int i=0;
76    double ans = x+coef[i];
77
78    while (i < N-1) {
79        i++;
80        ans = ans*x + coef[i];
81    }
82
83    return( ans );
84
85}
Note: See TracBrowser for help on using the repository browser.