home *** CD-ROM | disk | FTP | other *** search
- /*Program 3_3a -- Integration of a user function 'func'
- by Stephen R. Davis, 1987
-
- This function integrates a user function 'func' using the trapezoid
- rule to evaluate a definite integral over the range 'a' to 'b' by
- dividing it into 'steps' number of discrete intervals.
- */
-
- #include <stdio.h>
-
- /*prototype definitions --*/
- double integrate (double, double, unsigned);
- double func (double);
- double answer (double);
- int main (void);
-
- /*Integrate - evaluate the definite integral of a user function
- 'func' over the interval 'a' to 'b' by using the
- trapazoid rule on 'steps' number of subintervals*/
- double integrate (a, b, steps)
- double a,b;
- unsigned steps;
- {
- double func ();
- unsigned i;
- double integral, spacing, x;
-
- spacing = (b - a) / steps; /*divide the interval evenly*/
- integral = (func(b) + func(a)) / 2.;
- for (i = 1,x = a; i < steps; i++) { /*accumulate value over...*/
- x += spacing; /*...the interval*/
- integral += func(x);
- }
- return (integral * spacing);
- }
-
- /*Func - a test function to integrate and its value.
- (the integral of x**2 is equal to (x**3)/3). Replace
- func() and answer() with any desired function/integral
- pair and recompile.*/
- double func (x)
- double x;
- {
- return (x*x);
- }
- double answer (x)
- double x;
- {
- return x*x*x/3.;
- }
-
- /*Main - test routine integrate() w/ 'func'at various starting
- value, stoping value and step size. Compare with 'value'
- for accuracy.*/
- main ()
- {
- float a,b;
- unsigned steps;
-
- printf ("Enter starting x, ending x and number of steps\n");
- printf (" (exit by entering starting x equal ending x)\n");
- for (;;) {
- printf (">");
- scanf ("%f %f %d", &a, &b, &steps);
- printf ("a = %f, b = %f, steps = %d\n", a, b, steps);
- if (a == b)
- break;
- printf ("Integral is %f\n", integrate((double)a,
- (double)b, steps));
- printf ("(actual value is %f)\n", answer(b) - answer(a));
- }
- }