File: transform.h

package info (click to toggle)
grass 6.0.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 40,044 kB
  • ctags: 31,303
  • sloc: ansic: 321,125; tcl: 25,676; sh: 11,176; cpp: 10,098; makefile: 5,025; fortran: 1,846; yacc: 493; lex: 462; perl: 133; sed: 1
file content (20 lines) | stat: -rw-r--r-- 932 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* This is the definition file for the libtrans functions.
    These are the tools that move data from one coordinate system into
    another.
*/
/* to give the size of the multi-dim array parameter is necessary here,
   because DEC's cc V5.6-079 on Digital UNIX V4.0 (Rev. 878) seems to need it
 */
#define DIM_matrix 3

/* inverse.c */
int inverse(double [DIM_matrix][DIM_matrix]);
int isnull(double [DIM_matrix][DIM_matrix]);
/* m_mult.c */
int m_mult(double [DIM_matrix][DIM_matrix], double *, double *);
/* transform.c */
int compute_transformation_coef(double *, double *, double *, double *, int *, int);
int transform_a_into_b(double, double, double *, double *);
int transform_b_into_a(double, double, double *, double *);
int residuals_a_predicts_b(double *, double *, double *, double *, int *, int, double *, double *);
int residuals_b_predicts_a(double *, double *, double *, double *, int *, int, double *, double *);