FACT++  1.0
static void t_trxp ( int *  status)
static

Definition at line 8486 of file t_erfa_c.c.

References eraTrxp(), and vvd().

Referenced by main().

8501 {
8502  double r[3][3], p[3], trp[3];
8503 
8504 
8505  r[0][0] = 2.0;
8506  r[0][1] = 3.0;
8507  r[0][2] = 2.0;
8508 
8509  r[1][0] = 3.0;
8510  r[1][1] = 2.0;
8511  r[1][2] = 3.0;
8512 
8513  r[2][0] = 3.0;
8514  r[2][1] = 4.0;
8515  r[2][2] = 5.0;
8516 
8517  p[0] = 0.2;
8518  p[1] = 1.5;
8519  p[2] = 0.1;
8520 
8521  eraTrxp(r, p, trp);
8522 
8523  vvd(trp[0], 5.2, 1e-12, "eraTrxp", "1", status);
8524  vvd(trp[1], 4.0, 1e-12, "eraTrxp", "2", status);
8525  vvd(trp[2], 5.4, 1e-12, "eraTrxp", "3", status);
8526 
8527 }
static void vvd(double val, double valok, double dval, const char *func, const char *test, int *status)
Definition: t_erfa_c.c:58
void eraTrxp(double r[3][3], double p[3], double trp[3])
Definition: trxp.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: