home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / RKFDEMO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-13  |  374 b   |  26 lines

  1. # include <math.h>
  2. # include <stdio.h>
  3. # include "miscio.h"
  4. # include "integrat.h"
  5.  
  6. int i;
  7. int j;
  8. int k;
  9. float x;
  10. float y;
  11. float x1;
  12. float et;
  13. float h;
  14. float HMin;
  15. float yi;
  16. char found;
  17.  
  18.  
  19. void main()
  20. {
  21.    RungeKutta(0.0,1.0,0.1,0.01,0.01,0.01,&yi,&found);
  22.    if ( found ) {
  23.       printf("yest = %10.7f   YActual = %10.7f\n",  yi,  exp(0.2));
  24.    }
  25. }
  26.