poly()                   Generate a Polynomial from Arguments
 
 #include   <math.h>
 
 double     poly(x,n,c);
 double     x;
 int        n;
 double     c[];
 
    poly() generates a polynomial in 'x', of degree 'n', with
    coefficients c[0], c[1],...,c[n].  For example, if n = 4, the
    generated polynomial is
 
            c[4]x^4 + c[3]x^3 + c[2]x^2 + c[1]x + c[0]
 
    Returns:    The value of the polynomial as evaluated for 'x'.

This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster