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

  1.  
  2.  
  3. void PolyCurveFit(float *indvar,float *depvar,int numobs,int order,
  4.               float *coef,float *yest,float *resid,float *see,float *coefsig,
  5.               float *rsq,float *r,char *cferror);
  6.  
  7. void CubicSplines(float *x,float *y,int n,float *s);
  8.  
  9. void CalcSpline(float *xv,float *coef,int n,float x,float *y);
  10.