1 /*! ========================================================================
2 ** Extended Template and Library
3 ** Calculus Functional Classes Implementation
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 ** Copyright (c) 2008 Chris Moore
9 ** This package is free software; you can redistribute it and/or
10 ** modify it under the terms of the GNU General Public License as
11 ** published by the Free Software Foundation; either version 2 of
12 ** the License, or (at your option) any later version.
14 ** This package is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ** General Public License for more details.
19 ** === N O T E S ===========================================================
21 ** ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __ETL__CALCULUS_H
26 #define __ETL__CALCULUS_H
28 /* === H E A D E R S ======================================================= */
34 /* === M A C R O S ========================================================= */
37 //#define _EPSILON 0.0000001
40 /* === T Y P E D E F S ===================================================== */
42 /* === C L A S S E S & S T R U C T S ======================================= */
47 class derivative : public std::unary_function<typename T::argument_type,typename T::result_type>
50 typename T::argument_type epsilon;
52 explicit derivative(const T &x, const typename T::argument_type &epsilon=0.000001):func(x),epsilon(epsilon) { }
54 typename T::result_type
55 operator()(const typename T::argument_type &x)const
57 return (func(x+epsilon)-func(x))/epsilon;
62 class derivative<hermite<T> > : public std::unary_function<typename hermite<T>::argument_type,typename hermite<T>::result_type>
66 explicit derivative(const hermite<T> &x):func(x) { }
68 typename hermite<T>::result_type
69 operator()(const typename hermite<T>::argument_type &x)const
71 T a = func[0], b = func[1], c = func[2], d = func[3];
72 typename hermite<T>::argument_type y(1-x);
73 return ((b-a)*y*y + (c-b)*x*y*2 + (d-c)*x*x) * 3;
78 class integral : public std::binary_function<typename T::argument_type,typename T::argument_type,typename T::result_type>
83 explicit integral(const T &x, const int &samples=500):func(x),samples(samples) { }
85 typename T::result_type
86 operator()(typename T::argument_type x,typename T::argument_type y)const
88 typename T::result_type ret=0;
90 const typename T::argument_type increment=(y-x)/i;
92 for(;i;i--,x+=increment)
93 ret+=(func(x)+func(x+increment))*increment/2;
100 /* === E N D =============================================================== */