home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Classes / ContourView / splin2.h < prev   
C/C++ Source or Header  |  1992-12-03  |  528b  |  12 lines

  1.  
  2.  
  3. void splin2(float *x1a, float *x2a, float **ya, float **y2a,
  4.         int m, int n, float x1, float x2, float *y);
  5. void splie2(float *x1a, float *x2a, float **ya, int m, int n, float **y2a);
  6. void splint(float *xa, float *ya, float *y2a, int n, float x, float *y);
  7. void spline(float *x, float *y, int n, float yp1, float ypn, float *y2);
  8. float *fvector(int nl, int nh);
  9. void free_fvector(float *v, int nl, int nh);
  10. float **fmatrix(int nrl, int nrh, int ncl, int nch);
  11. void free_fmatrix(float **m, int nrl, int nrh, int ncl, int nch);
  12.