FACT++  1.0
void eraRxr ( double  a[3][3],
double  b[3][3],
double  atb[3][3] 
)

Definition at line 3 of file rxr.c.

References eraCr(), and i.

Referenced by eraBp00(), eraBp06(), eraC2tcio(), eraC2teqx(), eraHfk5z(), eraPn00(), eraPn06(), eraPnm80(), palDmxm(), palPrec(), palPrenut(), and t_rxr().

28 {
29  int i, j, k;
30  double w, wm[3][3];
31 
32  for (i = 0; i < 3; i++) {
33  for (j = 0; j < 3; j++) {
34  w = 0.0;
35  for (k = 0; k < 3; k++) {
36  w += a[i][k] * b[k][j];
37  }
38  wm[i][j] = w;
39  }
40  }
41  eraCr(wm, atb);
42 
43  return;
44 
45 }
int i
Definition: db_dim_client.c:21
void eraCr(double r[3][3], double c[3][3])
Definition: cr.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: