source: sasview/src/sas/models/c_extension/cephes/polevl.c @ 79492222

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 79492222 was 79492222, checked in by krzywon, 9 years ago

Changed the file and folder names to remove all SANS references.

  • Property mode set to 100644
File size: 1.6 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*/
51
52
53double polevl( x, coef, N )
54double x;
55double coef[];
56int N;
57{
58double ans;
59int i;
60double *p;
61
62p = coef;
63ans = *p++;
64i = N;
65
66do
67        ans = ans * x  +  *p++;
68while( --i );
69
70return( ans );
71}
72
73/*                                                      p1evl() */
74/*                                          N
75 * Evaluate polynomial when coefficient of x  is 1.0.
76 * Otherwise same as polevl.
77 */
78
79double p1evl( x, coef, N )
80double x;
81double coef[];
82int N;
83{
84double ans;
85double *p;
86int i;
87
88p = coef;
89ans = x + *p++;
90i = N-1;
91
92do
93        ans = ans * x  + *p++;
94while( --i );
95
96return( ans );
97}
Note: See TracBrowser for help on using the repository browser.