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

Definition at line 2744 of file t_erfa_c.c.

References eraCpv(), and vvd().

Referenced by main().

2759 {
2760  double pv[2][3], c[2][3];
2761 
2762 
2763  pv[0][0] = 0.3;
2764  pv[0][1] = 1.2;
2765  pv[0][2] = -2.5;
2766 
2767  pv[1][0] = -0.5;
2768  pv[1][1] = 3.1;
2769  pv[1][2] = 0.9;
2770 
2771  eraCpv(pv, c);
2772 
2773  vvd(c[0][0], 0.3, 0.0, "eraCpv", "p1", status);
2774  vvd(c[0][1], 1.2, 0.0, "eraCpv", "p2", status);
2775  vvd(c[0][2], -2.5, 0.0, "eraCpv", "p3", status);
2776 
2777  vvd(c[1][0], -0.5, 0.0, "eraCpv", "v1", status);
2778  vvd(c[1][1], 3.1, 0.0, "eraCpv", "v2", status);
2779  vvd(c[1][2], 0.9, 0.0, "eraCpv", "v3", status);
2780 
2781 }
static void vvd(double val, double valok, double dval, const char *func, const char *test, int *status)
Definition: t_erfa_c.c:58
void eraCpv(double pv[2][3], double c[2][3])
Definition: cpv.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: