FACT++  1.0
void eraTrxpv ( double  r[3][3],
double  pv[2][3],
double  trpv[2][3] 
)

Definition at line 3 of file trxpv.c.

References eraRxpv(), and eraTr().

Referenced by eraApco(), and t_trxpv().

28 {
29  double tr[3][3];
30 
31 /* Transpose of matrix r. */
32  eraTr(r, tr);
33 
34 /* Matrix tr * vector pv -> vector trpv. */
35  eraRxpv(tr, pv, trpv);
36 
37  return;
38 
39 }
void eraTr(double r[3][3], double rt[3][3])
Definition: tr.c:3
void eraRxpv(double r[3][3], double pv[2][3], double rpv[2][3])
Definition: rxpv.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: