chebyshev_series, a C++ code which evaluates a Chebyshev series approximating a function f(x), while efficiently computing one, two or three derivatives of the series, which approximate f'(x), f''(x), and f'''(x), by Manfred Zimmer.
Note that this library does not compute a Chebyshev series; it assumes that the series has already been computed, and offers an efficient means of evaluating the series and its derivatives simultaneously.
The computer code and data files made available on this web page are distributed under the MIT license
chebyshev_series is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version.
CHEBYSHEV, a C++ code which computes the Chebyshev interpolant/approximant to a given function over an interval.
CHEBYSHEV_INTERP_1D, a C++ code which determines the combination of Chebyshev polynomials which interpolates a set of data, so that p(x(i)) = y(i).
CHEBYSHEV_POLYNOMIAL, a C++ code which considers the Chebyshev polynomials T(i,x), U(i,x), V(i,x) and W(i,x). Functions are provided to evaluate the polynomials, determine their zeros, produce their polynomial coefficients, produce related quadrature rules, project other functions onto these polynomial bases, and integrate double and triple products of the polynomials.
CLAUSEN, a C++ code which evaluates a Chebyshev interpolant to the Clausen function Cl2(x).
FN, a C++ code which approximates elementary and special functions using Chebyshev polynomials; functions include Airy, Bessel I, J, K and Y, beta, confluent hypergeometric, error, gamma, log gamma, Pochhammer, Spence; integrals include hyperbolic cosine, cosine, Dawson, exponential, logarithmic, hyperbolic sine, sine; by Wayne Fullerton.
POLPAK, a C++ code which evaluates a variety of mathematical functions, including Chebyshev, Gegenbauer, Hermite, Jacobi, Laguerre, Legendre polynomials, and the Collatz sequence.
TOMS446, a C++ code which manipulates Chebyshev series for interpolation and approximation; this is ACM TOMS algorithm 446, by Roger Broucke.
Manfred Zimmer