Here’s some C++ functions which evaluate Chebyshev polynomials: T0(x): double T0(double x) ; T1(x): double T1(double x) ; T2(x): double T2(double x) ; Tn(x): double Tn(unsigned int n, double x) ; These are inline functions defined in the header file, chebyshev.h:
Archive of entries posted on July 2007
OpenDDS
OpenDDS: OpenDDS is an open source C++ implementation of the Object Management Group (OMG) Data Distribution Service (DDS). OpenDDS leverages the Adaptive Communication Environment (ACE) to provide a cross platform environment. OpenDDS is supported by Object Computing, Inc. Download OpenDDS here.
X Windows Programming in C++: Part III
X Windows Programming in C++: Part I X Windows Programming in C++: Part II Continuing with our task of creating a C++ version of basicwin.c, we next look at XCreateSimpleWindow. Here’s some code snippets from basicwin.c showing the use of XCreateSimpleWindow: