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

Definition at line 2783 of file t_erfa_c.c.

References eraCr(), and vvd().

Referenced by main().

2798 {
2799  double r[3][3], c[3][3];
2800 
2801 
2802  r[0][0] = 2.0;
2803  r[0][1] = 3.0;
2804  r[0][2] = 2.0;
2805 
2806  r[1][0] = 3.0;
2807  r[1][1] = 2.0;
2808  r[1][2] = 3.0;
2809 
2810  r[2][0] = 3.0;
2811  r[2][1] = 4.0;
2812  r[2][2] = 5.0;
2813 
2814  eraCr(r, c);
2815 
2816  vvd(c[0][0], 2.0, 0.0, "eraCr", "11", status);
2817  vvd(c[0][1], 3.0, 0.0, "eraCr", "12", status);
2818  vvd(c[0][2], 2.0, 0.0, "eraCr", "13", status);
2819 
2820  vvd(c[1][0], 3.0, 0.0, "eraCr", "21", status);
2821  vvd(c[1][1], 2.0, 0.0, "eraCr", "22", status);
2822  vvd(c[1][2], 3.0, 0.0, "eraCr", "23", status);
2823 
2824  vvd(c[2][0], 3.0, 0.0, "eraCr", "31", status);
2825  vvd(c[2][1], 4.0, 0.0, "eraCr", "32", status);
2826  vvd(c[2][2], 5.0, 0.0, "eraCr", "33", status);
2827 }
static void vvd(double val, double valok, double dval, const char *func, const char *test, int *status)
Definition: t_erfa_c.c:58
void eraCr(double r[3][3], double c[3][3])
Definition: cr.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: