nrutil.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:3k
源码类别:

生物技术

开发平台:

C++ Builder

  1. /* CAUTION: This is the ANSI C (only) version of the Numerical Recipes
  2.    utility file nrutil.h.  Do not confuse this file with the same-named
  3.    file nrutil.h that is supplied in the 'misc' subdirectory.
  4.    *That* file is the one from the book, and contains both ANSI and
  5.    traditional K&R versions, along with #ifdef macros to select the
  6.    correct version.  *This* file contains only ANSI C.               */
  7. #ifndef _NR_UTILS_H_
  8. #define _NR_UTILS_H_
  9. static float sqrarg;
  10. #define SQR(a) ((sqrarg=(a)) == 0.0 ? 0.0 : sqrarg*sqrarg)
  11. static double dsqrarg;
  12. #define DSQR(a) ((dsqrarg=(a)) == 0.0 ? 0.0 : dsqrarg*dsqrarg)
  13. static double dmaxarg1,dmaxarg2;
  14. #define DMAX(a,b) (dmaxarg1=(a),dmaxarg2=(b),(dmaxarg1) > (dmaxarg2) ?
  15.         (dmaxarg1) : (dmaxarg2))
  16. static double dminarg1,dminarg2;
  17. #define DMIN(a,b) (dminarg1=(a),dminarg2=(b),(dminarg1) < (dminarg2) ?
  18.         (dminarg1) : (dminarg2))
  19. static float maxarg1,maxarg2;
  20. #define FMAX(a,b) (maxarg1=(a),maxarg2=(b),(maxarg1) > (maxarg2) ?
  21.         (maxarg1) : (maxarg2))
  22. static float minarg1,minarg2;
  23. #define FMIN(a,b) (minarg1=(a),minarg2=(b),(minarg1) < (minarg2) ?
  24.         (minarg1) : (minarg2))
  25. static long lmaxarg1,lmaxarg2;
  26. #define LMAX(a,b) (lmaxarg1=(a),lmaxarg2=(b),(lmaxarg1) > (lmaxarg2) ?
  27.         (lmaxarg1) : (lmaxarg2))
  28. static long lminarg1,lminarg2;
  29. #define LMIN(a,b) (lminarg1=(a),lminarg2=(b),(lminarg1) < (lminarg2) ?
  30.         (lminarg1) : (lminarg2))
  31. static int imaxarg1,imaxarg2;
  32. #define IMAX(a,b) (imaxarg1=(a),imaxarg2=(b),(imaxarg1) > (imaxarg2) ?
  33.         (imaxarg1) : (imaxarg2))
  34. static int iminarg1,iminarg2;
  35. #define IMIN(a,b) (iminarg1=(a),iminarg2=(b),(iminarg1) < (iminarg2) ?
  36.         (iminarg1) : (iminarg2))
  37. #define SIGN(a,b) ((b) >= 0.0 ? fabs(a) : -fabs(a))
  38. void nrerror(char error_text[]);
  39. float *vector(long nl, long nh);
  40. int *ivector(long nl, long nh);
  41. unsigned char *cvector(long nl, long nh);
  42. unsigned long *lvector(long nl, long nh);
  43. double *dvector(long nl, long nh);
  44. float **matrix(long nrl, long nrh, long ncl, long nch);
  45. double **dmatrix(long nrl, long nrh, long ncl, long nch);
  46. int **imatrix(long nrl, long nrh, long ncl, long nch);
  47. float **submatrix(float **a, long oldrl, long oldrh, long oldcl, long oldch,
  48. long newrl, long newcl);
  49. float **convert_matrix(float *a, long nrl, long nrh, long ncl, long nch);
  50. float ***f3tensor(long nrl, long nrh, long ncl, long nch, long ndl, long ndh);
  51. void free_vector(float *v, long nl, long nh);
  52. void free_ivector(int *v, long nl, long nh);
  53. void free_cvector(unsigned char *v, long nl, long nh);
  54. void free_lvector(unsigned long *v, long nl, long nh);
  55. void free_dvector(double *v, long nl, long nh);
  56. void free_matrix(float **m, long nrl, long nrh, long ncl, long nch);
  57. void free_dmatrix(double **m, long nrl, long nrh, long ncl, long nch);
  58. void free_imatrix(int **m, long nrl, long nrh, long ncl, long nch);
  59. void free_submatrix(float **b, long nrl, long nrh, long ncl, long nch);
  60. void free_convert_matrix(float **b, long nrl, long nrh, long ncl, long nch);
  61. void free_f3tensor(float ***t, long nrl, long nrh, long ncl, long nch,
  62. long ndl, long ndh);
  63. #endif /* _NR_UTILS_H_ */