home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
- # include <stdio.h>
- # include "miscio.h"
- # include "integrat.h"
-
- int i;
- int j;
- int k;
- float x;
- float y;
- float x1;
- float et;
- float h;
- float HMin;
- float yi;
- char found;
-
-
- void main()
- {
- RungeKutta(0.0,1.0,0.1,0.01,0.01,0.01,&yi,&found);
- if ( found ) {
- printf("yest = %10.7f YActual = %10.7f\n", yi, exp(0.2));
- }
- }
-