libtrans.h 753 B

1234567891011121314151617181920212223
  1. #ifndef GRASS_LIBTRANSDEFS_H
  2. #define GRASS_LIBTRANSDEFS_H
  3. /* inverse.c */
  4. int inverse(double[DIM_matrix][DIM_matrix]);
  5. int isnull(double[DIM_matrix][DIM_matrix]);
  6. /* m_mult.c */
  7. int m_mult(double[DIM_matrix][DIM_matrix], double *, double *);
  8. /* transform.c */
  9. int compute_transformation_coef(double *, double *, double *, double *, int *,
  10. int);
  11. int transform_a_into_b(double, double, double *, double *);
  12. int transform_b_into_a(double, double, double *, double *);
  13. int residuals_a_predicts_b(double *, double *, double *, double *, int *, int,
  14. double *, double *);
  15. int residuals_b_predicts_a(double *, double *, double *, double *, int *, int,
  16. double *, double *);
  17. int print_transform_matrix(void);
  18. #endif /* GRASS_LIBTRANSDEFS_H */