transform.h 946 B

1234567891011121314151617181920212223242526
  1. /* This is the definition file for the libtrans functions.
  2. These are the tools that move data from one coordinate system into
  3. another.
  4. */
  5. /* to give the size of the multi-dim array parameter is necessary here,
  6. because DEC's cc V5.6-079 on Digital UNIX V4.0 (Rev. 878) seems to need it
  7. */
  8. #define DIM_matrix 3
  9. /* inverse.c */
  10. int inverse(double[DIM_matrix][DIM_matrix]);
  11. int isnull(double[DIM_matrix][DIM_matrix]);
  12. /* m_mult.c */
  13. int m_mult(double[DIM_matrix][DIM_matrix], double *, double *);
  14. /* transform.c */
  15. int compute_transformation_coef(double *, double *, double *, double *, int *,
  16. int);
  17. int transform_a_into_b(double, double, double *, double *);
  18. int transform_b_into_a(double, double, double *, double *);
  19. int residuals_a_predicts_b(double *, double *, double *, double *, int *, int,
  20. double *, double *);
  21. int residuals_b_predicts_a(double *, double *, double *, double *, int *, int,
  22. double *, double *);