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

Definition at line 8439 of file t_erfa_c.c.

References eraTr(), and vvd().

Referenced by main().

8454 {
8455  double r[3][3], rt[3][3];
8456 
8457 
8458  r[0][0] = 2.0;
8459  r[0][1] = 3.0;
8460  r[0][2] = 2.0;
8461 
8462  r[1][0] = 3.0;
8463  r[1][1] = 2.0;
8464  r[1][2] = 3.0;
8465 
8466  r[2][0] = 3.0;
8467  r[2][1] = 4.0;
8468  r[2][2] = 5.0;
8469 
8470  eraTr(r, rt);
8471 
8472  vvd(rt[0][0], 2.0, 0.0, "eraTr", "11", status);
8473  vvd(rt[0][1], 3.0, 0.0, "eraTr", "12", status);
8474  vvd(rt[0][2], 3.0, 0.0, "eraTr", "13", status);
8475 
8476  vvd(rt[1][0], 3.0, 0.0, "eraTr", "21", status);
8477  vvd(rt[1][1], 2.0, 0.0, "eraTr", "22", status);
8478  vvd(rt[1][2], 4.0, 0.0, "eraTr", "23", status);
8479 
8480  vvd(rt[2][0], 2.0, 0.0, "eraTr", "31", status);
8481  vvd(rt[2][1], 3.0, 0.0, "eraTr", "32", status);
8482  vvd(rt[2][2], 5.0, 0.0, "eraTr", "33", status);
8483 
8484 }
static void vvd(double val, double valok, double dval, const char *func, const char *test, int *status)
Definition: t_erfa_c.c:58
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: