FACT++  1.0
void eraNumat ( double  epsa,
double  dpsi,
double  deps,
double  rmatn[3][3] 
)

Definition at line 3 of file numat.c.

References eraIr(), eraRx(), and eraRz().

Referenced by eraNum06a(), eraNutm80(), eraPn00(), and t_numat().

46 {
47 /* Build the rotation matrix. */
48  eraIr(rmatn);
49  eraRx(epsa, rmatn);
50  eraRz(-dpsi, rmatn);
51  eraRx(-(epsa + deps), rmatn);
52 
53  return;
54 
55 }
void eraRx(double phi, double r[3][3])
Definition: rx.c:3
void eraIr(double r[3][3])
Definition: ir.c:3
void eraRz(double psi, double r[3][3])
Definition: rz.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: