1 /* $OpenBSD: polevll.c,v 1.2 2013/11/12 20:35:09 martynas Exp $ */
4 * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29 * long double x, y, coef[N+1], polevl[];
31 * y = polevll( x, coef, N );
37 * Evaluates polynomial of degree N:
40 * y = C + C x + C x +...+ C x
43 * Coefficients are stored in reverse order:
45 * coef[0] = C , ..., coef[N] = C .
48 * The function p1evll() assumes that coef[N] = 1.0 and is
49 * omitted from the array. Its calling arguments are
50 * otherwise the same as polevll().
55 * In the interest of speed, there are no checks for out
56 * of bounds arithmetic. This routine is used by most of
57 * the functions in the library. Depending on available
58 * equipment features, the user may wish to rewrite the
59 * program in microcode or assembly language.
65 #include "math_private.h"
68 * Polynomial evaluator:
69 * P[0] x^n + P[1] x^(n-1) + ... + P[n]
72 __polevll(long double x
, void *PP
, int n
)
77 P
= (long double *)PP
;
87 * Polynomial evaluator:
88 * x^n + P[0] x^(n-1) + P[1] x^(n-2) + ... + P[n]
91 __p1evll(long double x
, void *PP
, int n
)
96 P
= (long double *)PP
;