FACT++  1.0
void eraTrxp ( double  r[3][3],
double  p[3],
double  trp[3] 
)

Definition at line 3 of file trxp.c.

References eraRxp(), and eraTr().

Referenced by eraAticq(), eraAticqn(), eraFk5hz(), eraG2icrs(), eraH2fk5(), eraHfk5z(), eraPvtob(), palAmpqk(), palDimxv(), palEcleq(), palGaleq(), palGe50(), palSupgal(), and t_trxp().

28 {
29  double tr[3][3];
30 
31 /* Transpose of matrix r. */
32  eraTr(r, tr);
33 
34 /* Matrix tr * vector p -> vector trp. */
35  eraRxp(tr, p, trp);
36 
37  return;
38 
39 }
void eraRxp(double r[3][3], double p[3], double rp[3])
Definition: rxp.c:3
void eraTr(double r[3][3], double rt[3][3])
Definition: tr.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: