You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

util.h 504 B

123456789101112131415
  1. #ifndef TEST_UTIL_H
  2. #define TEST_UTIL_H
  3. void s2matgen(int, int, float *, float *);
  4. void d2matgen(int, int, double *, double *);
  5. void c2matgen(int, int, float *, float *);
  6. void z2matgen(int, int, double *, double *);
  7. double i2vecerr(int, const int *, const int *);
  8. double s2vecerr(int, const float *, const float *);
  9. double d2vecerr(int, const double *, const double *);
  10. double c2vecerr(int, const float *, const float *);
  11. double z2vecerr(int, const double *, const double *);
  12. #endif /* TEST_UTIL_H */