home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / INTEGRAT.H < prev    next >
Encoding:
Text File  |  1988-02-04  |  329 b   |  12 lines

  1.  
  2. float IFunction(float x);
  3.  
  4. float YPrime(float x,float y);
  5.  
  6. void IntegratFunction(int numseg,float xl,float xh,float *ans);
  7.  
  8. void IntegratVector(float *y,float samper,int xl,int xh,float *ans);
  9.  
  10. void RungeKutta(float XKnown,float YKnown,float x,float et,float h,
  11.                 float HMin,float *YEst,char *status);
  12.